[{"data":1,"prerenderedAt":1073},["ShallowReactive",2],{"/blog/kubernetes-terminology":3,"navigation-en-us":289,"banner-en-us":717,"footer-en-us":727,"blog-post-authors-en-us-Valerie Silverthorne":969,"blog-related-posts-en-us-kubernetes-terminology":984,"blog-promotions-en-us":1009,"next-steps-en-us":1063},{"id":4,"title":5,"authors":6,"body":8,"category":267,"date":268,"description":269,"extension":270,"externalUrl":271,"faq":271,"featured":272,"heroImage":273,"meta":274,"navigation":275,"path":276,"seo":277,"slug":281,"stem":282,"tags":283,"template":287,"updatedDate":271,"__hash__":288},"blogPosts/en-us/blog/kubernetes-terminology.md","Understand Kubernetes terminology from namespaces to pods",[7],"Valerie Silverthorne",{"type":9,"value":10,"toc":260},"minimark",[11,24,37,42,47,52,71,76,79,82,85,89,92,105,117,129,140,152,162,165,178,184,210,224,228],[12,13,14],"p",{},[15,16,17,18,23],"em",{},"If you're brand new to Kubernetes, you'll want to start with our ",[19,20,22],"a",{"href":21},"/blog/kubernetes-101/","Kubernetes 101 guide",".",[12,25,26,27,31,32,36],{},"Kubernetes and containers are often seen as two key elements in a ",[19,28,30],{"href":29},"/topics/devops/","successful DevOps practice",". But there's no question that Kubernetes can be intimidating to those not familiar with it. In fact, our ",[19,33,35],{"href":34},"/resources/developer-survey/","2020 Global DevSecOps Survey"," found just 38% of respondents are actively using Kubernetes today while 50% are not. Anecdotally though, interest in Kubernetes is very high:",[12,38,39],{},[15,40,41],{},"\"We are on the path to get our monolithic server into a sert of microservices and the goal is to use Kubernetes to help on this side.\"",[12,43,44],{},[15,45,46],{},"\"We're trying to get there.\"",[12,48,49],{},[15,50,51],{},"\"It's a priority for our platform team.\"",[12,53,54,55,58,59,64,65,70],{},"This past spring staff distribution engineer Jason Plum and senior distribution engineer Gerard Hickey walked attendees at GitLab's company-wide meeting Contribute through something they called ",[15,56,57],{},"Kubernetes 102"," that looked at the practical building blocks required for a cloud-native application on ",[19,60,63],{"href":61,"rel":62},"https://kubernetes.io",[],"Kubernetes",". As Jason puts it in the ",[19,66,69],{"href":67,"rel":68},"https://www.youtube.com/watch?v=jdKXBJLHP8I&feature=emb_title",[],"video",", \"what we're trying to do here is to not just say, 'Look at all the magic we do' but actually explain the things we're doing right.\" Although this was a \"laptops out\" demo, here's a look at the key concepts and Kubernetes terminology you'll need to understand followed by a link to the entire presentation if you'd like to dive right in.",[72,73,75],"h2",{"id":74},"start-with-containers","Start with containers",[12,77,78],{},"A container is not a jail, but a jail is a container, Jason explains. \"A container is a way of packaging an application so that it is portable. It's contained, hence (the term) 'container' and it's immutable. It's the runtime requirements to actually execute and package that up in an immutable form that you can hand to someone.\"",[12,80,81],{},"But containers can have a tendency to get out of hand so you need something to help keep track. That's where Kubernetes comes in, Jason says in the presentation. \"So what is Kubernetes at a high level? I've seen orchestrator, I've seen management system and I've seen coordinator. Kubernetes is all of those things.\"",[12,83,84],{},"Kubernetes weaves both containers and software-defined networking together, creating \"a platform you can deploy onto with a clear syntax,\" Jason says. \"That syntax is replicable and not vendor bound so that you can deploy it anywhere that supports the official behaviors. Its job is to start containers, keep them running and make sure they're still running. That's what its job is really about.\"",[72,86,88],{"id":87},"unpacking-the-moving-parts","Unpacking the moving parts",[12,90,91],{},"If you want to get more familiar with Kubernetes, it helps to understand the unique terminology, Jason stresses. Here are key terms that will help to explain the processes involved in running Kubernetes:",[12,93,94,98,99,104],{},[95,96,97],"strong",{},"Namespaces",": In Kubernetes, ",[19,100,103],{"href":101,"rel":102},"https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",[],"the namespaces"," is effectively your working area. It's like a project in GCP or a similar thing in AWS.",[12,106,107,110,111,116],{},[95,108,109],{},"Pods",": ",[19,112,115],{"href":113,"rel":114},"https://kubernetes.io/docs/concepts/workloads/pods/",[],"A pod"," is effectively a unit of work. It is a way to describe a series of containers, the volumes they might share, and interconnections that those containers within the pod may need. You can have a pod that has a single container in it (or more than one container). Pods are flexible, too: Update one and it becomes version two, and version one is taken out, giving you a rolling update. As Jason spells out, \"It gives us a way to say, 'I always want to have three and still be able to migrate an application live from one version to another version without having downtime.'",[12,118,119,122,123,128],{},[95,120,121],{},"Service",": Kubernetes \"has a concept of ",[19,124,127],{"href":125,"rel":126},"https://kubernetes.io/docs/concepts/services-networking/service/",[],"a service",",\" Jason says. \"It can be thought of as like a load balancer for pods. It knows which pods are alive, healthy, and ready to respond so that when we try to access whatever pod we want to get to instead of to connect to the deployment and getting the one we get, and then always asking that pod for work.\"",[12,130,131,134,135,139],{},[95,132,133],{},"Ingress",": This works with the service to make sure everything ends up in the right place. ",[19,136,133],{"href":137,"rel":138},"https://kubernetes.io/docs/concepts/services-networking/ingress/",[]," can also provide load balancing.",[12,141,142,145,146,151],{},[95,143,144],{},"ConfigMaps",": This is an API object for storing information in key-value pairs. \"A ",[19,147,150],{"href":148,"rel":149},"https://kubernetes.io/docs/concepts/configuration/configmap/",[],"ConfigMap"," is very useful for doing things like pre-stashing environment variables or files that can actually be mounted directly into pods without actually having to have an actual file system somewhere,\" Jason says, adding that they're not meant for confidential data.",[12,153,154,110,157,161],{},[95,155,156],{},"Secrets",[19,158,156],{"href":159,"rel":160},"https://kubernetes.io/docs/concepts/configuration/secret/",[]," are an object and a place to store confidential information as the name implies.",[12,163,164],{},"Now that you have the Kubernetes terminology down, watch the entire presentation here:",[166,167,170,171],"figure",{"className":168},[169],"video_container","\n  ",[172,173,177],"iframe",{"src":174,"frameBorder":175,"allowFullScreen":176},"https://www.youtube-nocookie.com/embed/jdKXBJLHP8I","0","true"," ",[12,179,180,183],{},[95,181,182],{},"Read more about Kubernetes",":",[185,186,187,194,202],"ul",{},[188,189,190],"li",{},[19,191,193],{"href":192},"/blog/best-practices-for-kubernetes-runners/","Keep your Kubernetes runners moving",[188,195,196,197,201],{},"Set up GitLab CI/CD on ",[19,198,200],{"href":199},"/blog/gitlab-ci-on-google-kubernetes-engine/","Google Kubernetes Engine"," in 15 minutes!",[188,203,204,205,209],{},"Create a ",[19,206,208],{"href":207},"/blog/gitlab-eks-integration-how-to/","Kubernetes cluster"," on Amazon EKS",[12,211,212,213,218,219],{},"Cover image by ",[19,214,217],{"href":215,"rel":216},"https://unsplash.com/@matti_johnson",[],"Matti Johnson"," on ",[19,220,223],{"href":221,"rel":222},"https://unsplash.com",[],"Unsplash",[72,225,227],{"id":226},"read-more-on-kubernetes","Read more on Kubernetes:",[185,229,230,236,242,248,254],{},[188,231,232],{},[19,233,235],{"href":234},"/blog/gko-on-ocp/","How to install and use the GitLab Kubernetes Operator",[188,237,238],{},[19,239,241],{"href":240},"/blog/threat-modeling-kubernetes-agent/","Threat modeling the Kubernetes Agent: from MVC to continuous improvement",[188,243,244],{},[19,245,247],{"href":246},"/blog/setting-up-the-k-agent/","How to deploy the GitLab Agent for Kubernetes with limited permissions",[188,249,250],{},[19,251,253],{"href":252},"/blog/gitlab-kubernetes-agent-on-gitlab-com/","A new era of Kubernetes integrations on GitLab.com",[188,255,256],{},[19,257,259],{"href":258},"/blog/year-of-kubernetes/","What we learned after a year of GitLab.com on Kubernetes",{"title":261,"searchDepth":262,"depth":262,"links":263},"",2,[264,265,266],{"id":74,"depth":262,"text":75},{"id":87,"depth":262,"text":88},{"id":226,"depth":262,"text":227},"insights","2020-07-30","Kubernetes can be a critical piece of successful DevOps but there's a lot to learn. We explain the terms and share a hands-on demo.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749670635/Blog/Hero%20Images/kubernetesterms.jpg",{},true,"/en-us/blog/kubernetes-terminology",{"title":5,"description":269,"ogTitle":5,"ogDescription":269,"noIndex":272,"ogImage":273,"ogUrl":278,"ogSiteName":279,"ogType":280,"canonicalUrls":278},"https://about.gitlab.com/blog/kubernetes-terminology","https://about.gitlab.com","article","kubernetes-terminology","en-us/blog/kubernetes-terminology",[284,285,286],"kubernetes","DevOps","cloud native","BlogPost","PjRuSgVguwB8rfdvcDD773mtNIZodibbKCftzIcxeCY",{"logo":290,"freeTrial":295,"sales":300,"login":305,"items":310,"search":637,"minimal":668,"duo":687,"switchNav":696,"pricingDeployment":707},{"config":291},{"href":292,"dataGaName":293,"dataGaLocation":294},"/","gitlab logo","header",{"text":296,"config":297},"Get free trial",{"href":298,"dataGaName":299,"dataGaLocation":294},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":301,"config":302},"Request a demo",{"href":303,"dataGaName":304,"dataGaLocation":294},"/sales/?contact-topic=request-demo","sales",{"text":306,"config":307},"Sign in",{"href":308,"dataGaName":309,"dataGaLocation":294},"https://gitlab.com/users/sign_in/","sign in",[311,340,440,445,559,615],{"text":312,"config":313,"menu":315},"Platform",{"dataNavLevelOne":314},"platform",{"type":316,"columns":317},"cards",[318,324,332],{"title":312,"description":319,"link":320},"The intelligent orchestration platform for DevSecOps",{"text":321,"config":322},"Explore our Platform",{"href":323,"dataGaName":314,"dataGaLocation":294},"/platform/",{"title":325,"description":326,"link":327},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":328,"config":329},"Meet GitLab Duo",{"href":330,"dataGaName":331,"dataGaLocation":294},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":333,"description":334,"link":335},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":336,"config":337},"Learn more",{"href":338,"dataGaName":339,"dataGaLocation":294},"/why-gitlab/","why gitlab",{"text":341,"left":275,"config":342,"menu":344},"Product",{"dataNavLevelOne":343},"solutions",{"type":345,"link":346,"columns":350,"feature":419},"lists",{"text":347,"config":348},"View all Solutions",{"href":349,"dataGaName":343,"dataGaLocation":294},"/solutions/",[351,375,398],{"title":352,"description":353,"link":354,"items":359},"Automation","CI/CD and automation to accelerate deployment",{"config":355},{"icon":356,"href":357,"dataGaName":358,"dataGaLocation":294},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[360,364,367,371],{"text":361,"config":362},"CI/CD",{"href":363,"dataGaLocation":294,"dataGaName":361},"/solutions/continuous-integration/",{"text":325,"config":365},{"href":330,"dataGaLocation":294,"dataGaName":366},"gitlab duo agent platform - product menu",{"text":368,"config":369},"Source Code Management",{"href":370,"dataGaLocation":294,"dataGaName":368},"/solutions/source-code-management/",{"text":372,"config":373},"Automated Software Delivery",{"href":357,"dataGaLocation":294,"dataGaName":374},"Automated software delivery",{"title":376,"description":377,"link":378,"items":383},"Security","Deliver code faster without compromising security",{"config":379},{"href":380,"dataGaName":381,"dataGaLocation":294,"icon":382},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[384,388,393],{"text":385,"config":386},"Application Security Testing",{"href":380,"dataGaName":387,"dataGaLocation":294},"Application security testing",{"text":389,"config":390},"Software Supply Chain Security",{"href":391,"dataGaLocation":294,"dataGaName":392},"/solutions/supply-chain/","Software supply chain security",{"text":394,"config":395},"Software Compliance",{"href":396,"dataGaName":397,"dataGaLocation":294},"/solutions/software-compliance/","software compliance",{"title":399,"link":400,"items":405},"Measurement",{"config":401},{"icon":402,"href":403,"dataGaName":404,"dataGaLocation":294},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[406,410,414],{"text":407,"config":408},"Visibility & Measurement",{"href":403,"dataGaLocation":294,"dataGaName":409},"Visibility and Measurement",{"text":411,"config":412},"Value Stream Management",{"href":413,"dataGaLocation":294,"dataGaName":411},"/solutions/value-stream-management/",{"text":415,"config":416},"Analytics & Insights",{"href":417,"dataGaLocation":294,"dataGaName":418},"/solutions/analytics-and-insights/","Analytics and insights",{"title":420,"type":345,"items":421},"GitLab for",[422,428,434],{"text":423,"config":424},"Enterprise",{"icon":425,"href":426,"dataGaLocation":294,"dataGaName":427},"Building","/enterprise/","enterprise",{"text":429,"config":430},"Small Business",{"icon":431,"href":432,"dataGaLocation":294,"dataGaName":433},"Work","/small-business/","small business",{"text":435,"config":436},"Public Sector",{"icon":437,"href":438,"dataGaLocation":294,"dataGaName":439},"Organization","/solutions/public-sector/","public sector",{"text":441,"config":442},"Pricing",{"href":443,"dataGaName":444,"dataGaLocation":294,"dataNavLevelOne":444},"/pricing/","pricing",{"text":446,"config":447,"menu":449},"Resources",{"dataNavLevelOne":448},"resources",{"type":345,"link":450,"columns":454,"feature":548},{"text":451,"config":452},"View all resources",{"href":453,"dataGaName":448,"dataGaLocation":294},"/resources/",[455,488,515],{"title":456,"items":457},"Getting started",[458,463,468,473,478,483],{"text":459,"config":460},"Install",{"href":461,"dataGaName":462,"dataGaLocation":294},"/install/","install",{"text":464,"config":465},"Quick start guides",{"href":466,"dataGaName":467,"dataGaLocation":294},"/get-started/","quick setup checklists",{"text":469,"config":470},"Learn",{"href":471,"dataGaLocation":294,"dataGaName":472},"https://university.gitlab.com/","learn",{"text":474,"config":475},"Product documentation",{"href":476,"dataGaName":477,"dataGaLocation":294},"https://docs.gitlab.com/","product documentation",{"text":479,"config":480},"Best practice videos",{"href":481,"dataGaName":482,"dataGaLocation":294},"/getting-started-videos/","best practice videos",{"text":484,"config":485},"Integrations",{"href":486,"dataGaName":487,"dataGaLocation":294},"/integrations/","integrations",{"title":489,"items":490},"Discover",[491,496,501,506,510],{"text":492,"config":493},"Customer success stories",{"href":494,"dataGaName":495,"dataGaLocation":294},"/customers/","customer success stories",{"text":497,"config":498},"Blog",{"href":499,"dataGaName":500,"dataGaLocation":294},"/blog/","blog",{"text":502,"config":503},"Demo Hub",{"href":504,"dataGaName":505,"dataGaLocation":294},"/demo-hub/","demo hub",{"text":507,"config":508},"The Source",{"href":509,"dataGaName":500,"dataGaLocation":294},"/the-source/",{"text":511,"config":512},"Remote",{"href":513,"dataGaName":514,"dataGaLocation":294},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":516,"items":517},"Connect",[518,523,528,533,538,543],{"text":519,"config":520},"GitLab Services",{"href":521,"dataGaName":522,"dataGaLocation":294},"/services/","services",{"text":524,"config":525},"Contribute",{"href":526,"dataGaName":527,"dataGaLocation":294},"https://contributors.gitlab.com","contribute",{"text":529,"config":530},"Community",{"href":531,"dataGaName":532,"dataGaLocation":294},"/community/","community",{"text":534,"config":535},"Forum",{"href":536,"dataGaName":537,"dataGaLocation":294},"https://forum.gitlab.com/","forum",{"text":539,"config":540},"Events",{"href":541,"dataGaName":542,"dataGaLocation":294},"/events/","events",{"text":544,"config":545},"Partners",{"href":546,"dataGaName":547,"dataGaLocation":294},"/partners/","partners",{"config":549,"title":552,"text":553,"link":554},{"background":550,"textColor":551},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","What’s new in GitLab","Stay updated with our latest features and improvements.",{"text":555,"config":556},"Read the latest",{"href":557,"dataGaName":558,"dataGaLocation":294},"/whats-new/","whats new",{"text":560,"config":561,"menu":563},"Company",{"dataNavLevelOne":562},"company",{"type":345,"columns":564},[565],{"items":566},[567,572,578,580,585,590,595,600,605,610],{"text":568,"config":569},"About",{"href":570,"dataGaName":571,"dataGaLocation":294},"/company/","about",{"text":573,"config":574,"footerGa":577},"Jobs",{"href":575,"dataGaName":576,"dataGaLocation":294},"/jobs/","jobs",{"dataGaName":576},{"text":539,"config":579},{"href":541,"dataGaName":542,"dataGaLocation":294},{"text":581,"config":582},"Leadership",{"href":583,"dataGaName":584,"dataGaLocation":294},"/company/team/e-group/","leadership",{"text":586,"config":587},"Handbook",{"href":588,"dataGaName":589,"dataGaLocation":294},"https://handbook.gitlab.com/","handbook",{"text":591,"config":592},"Investor relations",{"href":593,"dataGaName":594,"dataGaLocation":294},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":596,"config":597},"Trust Center",{"href":598,"dataGaName":599,"dataGaLocation":294},"/security/","trust center",{"text":601,"config":602},"AI Transparency Center",{"href":603,"dataGaName":604,"dataGaLocation":294},"/ai-transparency-center/","ai transparency center",{"text":606,"config":607},"Newsletter",{"href":608,"dataGaName":609,"dataGaLocation":294},"/company/contact/#contact-forms","newsletter",{"text":611,"config":612},"Press",{"href":613,"dataGaName":614,"dataGaLocation":294},"/press/","press",{"text":616,"config":617,"menu":618},"Contact us",{"dataNavLevelOne":562},{"type":345,"columns":619},[620],{"items":621},[622,627,632],{"text":623,"config":624},"Talk to sales",{"href":625,"dataGaName":626,"dataGaLocation":294},"/sales/","talk to sales",{"text":628,"config":629},"Support portal",{"href":630,"dataGaName":631,"dataGaLocation":294},"https://support.gitlab.com/hc/en-us","support portal",{"text":633,"config":634},"Customer portal",{"href":635,"dataGaName":636,"dataGaLocation":294},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":638,"login":639,"suggestions":646},"Close",{"text":640,"link":641},"To search repositories and projects, login to",{"text":642,"config":643},"gitlab.com",{"href":308,"dataGaName":644,"dataGaLocation":645},"search login","search",{"text":647,"default":648},"Suggestions",[649,651,655,657,661,665],{"text":325,"config":650},{"href":330,"dataGaName":325,"dataGaLocation":645},{"text":652,"config":653},"Code Suggestions (AI)",{"href":654,"dataGaName":652,"dataGaLocation":645},"/solutions/code-suggestions/",{"text":361,"config":656},{"href":363,"dataGaName":361,"dataGaLocation":645},{"text":658,"config":659},"GitLab on AWS",{"href":660,"dataGaName":658,"dataGaLocation":645},"/partners/technology-partners/aws/",{"text":662,"config":663},"GitLab on Google Cloud",{"href":664,"dataGaName":662,"dataGaLocation":645},"/partners/technology-partners/google-cloud-platform/",{"text":666,"config":667},"Why GitLab?",{"href":338,"dataGaName":666,"dataGaLocation":645},{"freeTrial":669,"mobileIcon":674,"desktopIcon":679,"secondaryButton":682},{"text":670,"config":671},"Start free trial",{"href":672,"dataGaName":299,"dataGaLocation":673},"https://gitlab.com/-/trials/new/","nav",{"altText":675,"config":676},"Gitlab Icon",{"src":677,"dataGaName":678,"dataGaLocation":673},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":675,"config":680},{"src":681,"dataGaName":678,"dataGaLocation":673},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":683,"config":684},"Get Started",{"href":685,"dataGaName":686,"dataGaLocation":673},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":688,"mobileIcon":692,"desktopIcon":694},{"text":689,"config":690},"Learn more about GitLab Duo",{"href":330,"dataGaName":691,"dataGaLocation":673},"gitlab duo",{"altText":675,"config":693},{"src":677,"dataGaName":678,"dataGaLocation":673},{"altText":675,"config":695},{"src":681,"dataGaName":678,"dataGaLocation":673},{"button":697,"mobileIcon":702,"desktopIcon":704},{"text":698,"config":699},"/switch",{"href":700,"dataGaName":701,"dataGaLocation":673},"#contact","switch",{"altText":675,"config":703},{"src":677,"dataGaName":678,"dataGaLocation":673},{"altText":675,"config":705},{"src":706,"dataGaName":678,"dataGaLocation":673},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":708,"mobileIcon":713,"desktopIcon":715},{"text":709,"config":710},"Back to pricing",{"href":443,"dataGaName":711,"dataGaLocation":673,"icon":712},"back to pricing","GoBack",{"altText":675,"config":714},{"src":677,"dataGaName":678,"dataGaLocation":673},{"altText":675,"config":716},{"src":681,"dataGaName":678,"dataGaLocation":673},{"title":718,"titleMobile":719,"button":720,"config":725},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":336,"config":721},{"href":722,"dataGaName":723,"dataGaLocation":724},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":726,"disabled":272},"release",{"data":728},{"text":729,"source":730,"edit":736,"contribute":741,"config":746,"items":751,"minimal":958},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":731,"config":732},"View page source",{"href":733,"dataGaName":734,"dataGaLocation":735},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":737,"config":738},"Edit this page",{"href":739,"dataGaName":740,"dataGaLocation":735},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":742,"config":743},"Please contribute",{"href":744,"dataGaName":745,"dataGaLocation":735},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":747,"facebook":748,"youtube":749,"linkedin":750},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[752,799,850,894,926],{"title":441,"links":753,"subMenu":768},[754,758,763],{"text":755,"config":756},"View plans",{"href":443,"dataGaName":757,"dataGaLocation":735},"view plans",{"text":759,"config":760},"Why Premium?",{"href":761,"dataGaName":762,"dataGaLocation":735},"/pricing/premium/","why premium",{"text":764,"config":765},"Why Ultimate?",{"href":766,"dataGaName":767,"dataGaLocation":735},"/pricing/ultimate/","why ultimate",[769],{"title":770,"links":771},"Contact Us",[772,775,777,779,784,789,794],{"text":773,"config":774},"Contact sales",{"href":625,"dataGaName":304,"dataGaLocation":735},{"text":628,"config":776},{"href":630,"dataGaName":631,"dataGaLocation":735},{"text":633,"config":778},{"href":635,"dataGaName":636,"dataGaLocation":735},{"text":780,"config":781},"Status",{"href":782,"dataGaName":783,"dataGaLocation":735},"https://status.gitlab.com/","status",{"text":785,"config":786},"Terms of use",{"href":787,"dataGaName":788,"dataGaLocation":735},"/terms/","terms of use",{"text":790,"config":791},"Privacy statement",{"href":792,"dataGaName":793,"dataGaLocation":735},"/privacy/","privacy statement",{"text":795,"config":796},"Cookie preferences",{"dataGaName":797,"dataGaLocation":735,"id":798,"isOneTrustButton":275},"cookie preferences","ot-sdk-btn",{"title":341,"links":800,"subMenu":809},[801,805],{"text":802,"config":803},"DevSecOps platform",{"href":323,"dataGaName":804,"dataGaLocation":735},"devsecops platform",{"text":806,"config":807},"AI-Assisted Development",{"href":330,"dataGaName":808,"dataGaLocation":735},"ai-assisted development",[810],{"title":811,"links":812},"Topics",[813,818,823,826,831,836,840,845],{"text":814,"config":815},"CICD",{"href":816,"dataGaName":817,"dataGaLocation":735},"/topics/ci-cd/","cicd",{"text":819,"config":820},"GitOps",{"href":821,"dataGaName":822,"dataGaLocation":735},"/topics/gitops/","gitops",{"text":285,"config":824},{"href":29,"dataGaName":825,"dataGaLocation":735},"devops",{"text":827,"config":828},"Version Control",{"href":829,"dataGaName":830,"dataGaLocation":735},"/topics/version-control/","version control",{"text":832,"config":833},"DevSecOps",{"href":834,"dataGaName":835,"dataGaLocation":735},"/topics/devsecops/","devsecops",{"text":837,"config":838},"Cloud Native",{"href":839,"dataGaName":286,"dataGaLocation":735},"/topics/cloud-native/",{"text":841,"config":842},"AI for Coding",{"href":843,"dataGaName":844,"dataGaLocation":735},"/topics/devops/ai-for-coding/","ai for coding",{"text":846,"config":847},"Agentic AI",{"href":848,"dataGaName":849,"dataGaLocation":735},"/topics/agentic-ai/","agentic ai",{"title":851,"links":852},"Solutions",[853,855,857,862,866,869,873,876,878,881,884,889],{"text":385,"config":854},{"href":380,"dataGaName":385,"dataGaLocation":735},{"text":374,"config":856},{"href":357,"dataGaName":358,"dataGaLocation":735},{"text":858,"config":859},"Agile development",{"href":860,"dataGaName":861,"dataGaLocation":735},"/solutions/agile-delivery/","agile delivery",{"text":863,"config":864},"SCM",{"href":370,"dataGaName":865,"dataGaLocation":735},"source code management",{"text":814,"config":867},{"href":363,"dataGaName":868,"dataGaLocation":735},"continuous integration & delivery",{"text":870,"config":871},"Value stream management",{"href":413,"dataGaName":872,"dataGaLocation":735},"value stream management",{"text":819,"config":874},{"href":875,"dataGaName":822,"dataGaLocation":735},"/solutions/gitops/",{"text":423,"config":877},{"href":426,"dataGaName":427,"dataGaLocation":735},{"text":879,"config":880},"Small business",{"href":432,"dataGaName":433,"dataGaLocation":735},{"text":882,"config":883},"Public sector",{"href":438,"dataGaName":439,"dataGaLocation":735},{"text":885,"config":886},"Education",{"href":887,"dataGaName":888,"dataGaLocation":735},"/solutions/education/","education",{"text":890,"config":891},"Financial services",{"href":892,"dataGaName":893,"dataGaLocation":735},"/solutions/finance/","financial services",{"title":446,"links":895},[896,898,900,902,905,907,910,912,914,916,918,920,922,924],{"text":459,"config":897},{"href":461,"dataGaName":462,"dataGaLocation":735},{"text":464,"config":899},{"href":466,"dataGaName":467,"dataGaLocation":735},{"text":469,"config":901},{"href":471,"dataGaName":472,"dataGaLocation":735},{"text":474,"config":903},{"href":476,"dataGaName":904,"dataGaLocation":735},"docs",{"text":497,"config":906},{"href":499,"dataGaName":500,"dataGaLocation":735},{"text":908,"config":909},"What's new",{"href":557,"dataGaName":558,"dataGaLocation":735},{"text":492,"config":911},{"href":494,"dataGaName":495,"dataGaLocation":735},{"text":511,"config":913},{"href":513,"dataGaName":514,"dataGaLocation":735},{"text":519,"config":915},{"href":521,"dataGaName":522,"dataGaLocation":735},{"text":524,"config":917},{"href":526,"dataGaName":527,"dataGaLocation":735},{"text":529,"config":919},{"href":531,"dataGaName":532,"dataGaLocation":735},{"text":534,"config":921},{"href":536,"dataGaName":537,"dataGaLocation":735},{"text":539,"config":923},{"href":541,"dataGaName":542,"dataGaLocation":735},{"text":544,"config":925},{"href":546,"dataGaName":547,"dataGaLocation":735},{"title":560,"links":927},[928,930,932,934,936,938,942,947,949,951,953],{"text":568,"config":929},{"href":570,"dataGaName":562,"dataGaLocation":735},{"text":573,"config":931},{"href":575,"dataGaName":576,"dataGaLocation":735},{"text":581,"config":933},{"href":583,"dataGaName":584,"dataGaLocation":735},{"text":586,"config":935},{"href":588,"dataGaName":589,"dataGaLocation":735},{"text":591,"config":937},{"href":593,"dataGaName":594,"dataGaLocation":735},{"text":939,"config":940},"Sustainability",{"href":941,"dataGaName":939,"dataGaLocation":735},"/sustainability/",{"text":943,"config":944},"Diversity, inclusion and belonging (DIB)",{"href":945,"dataGaName":946,"dataGaLocation":735},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":596,"config":948},{"href":598,"dataGaName":599,"dataGaLocation":735},{"text":606,"config":950},{"href":608,"dataGaName":609,"dataGaLocation":735},{"text":611,"config":952},{"href":613,"dataGaName":614,"dataGaLocation":735},{"text":954,"config":955},"Modern Slavery Transparency Statement",{"href":956,"dataGaName":957,"dataGaLocation":735},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":959},[960,963,966],{"text":961,"config":962},"Terms",{"href":787,"dataGaName":788,"dataGaLocation":735},{"text":964,"config":965},"Cookies",{"dataGaName":797,"dataGaLocation":735,"id":798,"isOneTrustButton":275},{"text":967,"config":968},"Privacy",{"href":792,"dataGaName":793,"dataGaLocation":735},[970],{"id":971,"title":7,"body":271,"config":972,"content":974,"description":271,"extension":978,"meta":979,"navigation":275,"path":980,"seo":981,"stem":982,"__hash__":983},"blogAuthors/en-us/blog/authors/valerie-silverthorne.yml",{"template":973},"BlogAuthor",{"name":7,"config":975},{"headshot":976,"ctfId":977},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659488/Blog/Author%20Headshots/gitlab-logo-extra-whitespace.png","vsilverthorne","yml",{},"/en-us/blog/authors/valerie-silverthorne",{},"en-us/blog/authors/valerie-silverthorne","r2glbOZCR5HOKEwYKJRy7sOVW6u0oTjxVRg28ZvHJ-I",[985,993,1001],{"title":986,"description":987,"heroImage":988,"category":267,"date":989,"authors":990,"slug":992,"externalUrl":271},"How we overhauled GitLab navigation","Users weren't getting what they needed from our navigation. Here are the steps we took to turn that experience around.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682884/Blog/Hero%20Images/navigation.jpg","2023-08-15",[991],"Ashley Knobloch","navigation-research-blog-post",{"title":994,"description":995,"heroImage":996,"category":267,"date":997,"authors":998,"slug":1000,"externalUrl":271},"Beautifying our UI: Giving GitLab build features a fresh look","Get an inside look at how we are improving the usability of GitLab build features with multiple visual design improvements.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749682807/Blog/Hero%20Images/beautify.jpg","2023-07-05",[999],"Veethika Mishra","beautifying-of-our-ui",{"title":1002,"description":1003,"heroImage":1004,"category":267,"date":1005,"authors":1006,"slug":1008,"externalUrl":271},"4 best practices leading orgs to release software faster","GitLab's 2023 Global DevSecOps Survey illuminates the strategies that organizations deploying more frequently have in common.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749663908/Blog/Hero%20Images/2023-devsecops-report-blog-banner2.png","2023-06-08",[1007],"Kristina Weis","best-practices-leading-orgs-to-release-software-faster",{"promotions":1010},[1011,1025,1037,1049],{"id":1012,"categories":1013,"header":1015,"text":1016,"button":1017,"image":1022},"ai-modernization",[1014],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":1018,"config":1019},"Get your AI maturity score",{"href":1020,"dataGaName":1021,"dataGaLocation":500},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1023},{"src":1024},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1026,"categories":1027,"header":1029,"text":1016,"button":1030,"image":1034},"devops-modernization",[1028,835],"product","Are you just managing tools or shipping innovation?",{"text":1031,"config":1032},"Get your DevOps maturity score",{"href":1033,"dataGaName":1021,"dataGaLocation":500},"/assessments/devops-modernization-assessment/",{"config":1035},{"src":1036},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1038,"categories":1039,"header":1041,"text":1016,"button":1042,"image":1046},"security-modernization",[1040],"security","Are you trading speed for security?",{"text":1043,"config":1044},"Get your security maturity score",{"href":1045,"dataGaName":1021,"dataGaLocation":500},"/assessments/security-modernization-assessment/",{"config":1047},{"src":1048},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1050,"paths":1051,"header":1054,"text":1055,"button":1056,"image":1061},"github-azure-migration",[1052,1053],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","Is your team ready for GitHub's Azure move?","GitHub is already rebuilding around Azure. Find out what it means for you.",{"text":1057,"config":1058},"See how GitLab compares to GitHub",{"href":1059,"dataGaName":1060,"dataGaLocation":500},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1062},{"src":1036},{"header":1064,"blurb":1065,"button":1066,"secondaryButton":1071},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1067,"config":1068},"Get your free trial",{"href":1069,"dataGaName":299,"dataGaLocation":1070},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":773,"config":1072},{"href":625,"dataGaName":304,"dataGaLocation":1070},1786803772677]