[{"data":1,"prerenderedAt":1049},["ShallowReactive",2],{"/blog/safe-deploys":3,"navigation-en-us":265,"banner-en-us":692,"footer-en-us":702,"blog-post-authors-en-us-Orit Golowinski":946,"blog-related-posts-en-us-safe-deploys":960,"blog-promotions-en-us":986,"next-steps-en-us":1039},{"id":4,"title":5,"authors":6,"body":8,"category":243,"date":244,"description":245,"extension":246,"externalUrl":247,"faq":247,"featured":248,"heroImage":249,"meta":250,"navigation":251,"path":252,"seo":253,"slug":257,"stem":258,"tags":259,"template":263,"updatedDate":247,"__hash__":264},"blogPosts/en-us/blog/safe-deploys.md","GitLab's guide to safe deployment practices",[7],"Orit Golowinski",{"type":9,"value":10,"toc":232},"minimark",[11,15,29,32,37,40,49,53,61,74,77,100,104,115,129,142,145,148,156,168,174,178,181,189,195,218],[12,13,14],"p",{},"Here at GitLab we understand the importance of safe deployment practices.",[12,16,17,23,24,28],{},[18,19,22],"a",{"href":20,"rel":21},"https://docs.gitlab.com/ci/environments/",[],"Progressive delivery"," is continuous delivery with fine-grained control over who sees the change. This ensures that all code and configuration updates go through the ",[18,25,27],{"href":26},"/topics/ci-cd/","CI/CD stages"," to catch any regressions or bugs before they reach customers. If something does make it past those gates, progressive delivery makes sure any negative impact is as small as possible.",[12,30,31],{},"We have recently added several features that add safeguards to your deployment process, which we will review in this blog post.",[33,34,36],"h3",{"id":35},"protected-environments","Protected Environments",[12,38,39],{},"It is important that deploy jobs are restricted to only those who are authorized to deploy in that environment, and we call this restriction by roles \"protected\". While this feature has been around for a while, it is important to remember that this should be the first step to take when thinking about safe deployments.",[12,41,42,43,48],{},"Take a deeper dive into ",[18,44,47],{"href":45,"rel":46},"https://docs.gitlab.com/ci/environments/protected_environments/",[],"protected environments",".",[33,50,52],{"id":51},"sequential-deployment-or-safe-continuous-deployment","Sequential Deployment (or Safe Continuous Deployment)",[12,54,55,56,60],{},"If your project follows the Continuous Deployment practice that deploys the ",[57,58,59],"code",{},"master"," branch to the production environment with GitLab CI/CD pipelines, you may encounter the following problems due to the asynchronous nature of pipeline jobs:",[62,63,64,68,71],"ul",{},[65,66,67],"li",{},"Multiple deployment jobs run concurrently, targeting the same environment. This can make the environment unstable because the deployment script could conflict and finish in an incomplete state.",[65,69,70],{},"An older deployment job could overwrite the latest deployment, resulting in an unintentional rollback. Some users could be exposed to old feature sets on the production website even though the pipeline shows that the latest deployment job successfully finished.",[65,72,73],{},"A pipeline might deploy to production at the worst time, such as on a holiday or over the weekend, when there is limited staff available to solve potential problems.",[12,75,76],{},"To address these problems, GitLab provides the following options:",[62,78,79,86,93],{},[65,80,81],{},[18,82,85],{"href":83,"rel":84},"https://docs.gitlab.com/ci/yaml/#resource_group",[],"Limit job concurrency",[65,87,88],{},[18,89,92],{"href":90,"rel":91},"https://docs.gitlab.com/ci/pipelines/settings/#skip-outdated-deployment-jobs",[],"Prevent deployment of old versions",[65,94,95],{},[18,96,99],{"href":97,"rel":98},"https://docs.gitlab.com/user/project/releases/#prevent-unintentional-releases-by-setting-a-deploy-freeze",[],"Deploy freeze",[101,102,85],"h2",{"id":103},"limit-job-concurrency",[12,105,106,107,110,111,114],{},"You can limit deployment concurrency by adding a ",[57,108,109],{},"resource_group"," to any ",[57,112,113],{},".gitlab-ci.yml"," jobs that should run one at a time. For example:",[62,116,117,120,123,126],{},[65,118,119],{},"Pipeline-A starts running with SHA-A",[65,121,122],{},"Pipeline-B starts running with SHA-B (newer)",[65,124,125],{},"Pipeline-A starts a deployment",[65,127,128],{},"Pipeline-B waits for Pipeline-A's deployment to finish",[130,131,134,135],"figure",{"className":132},[133],"video_container","\n  ",[136,137,141],"iframe",{"src":138,"frameBorder":139,"allowFullScreen":140},"https://www.youtube.com/embed/m6eZb6U-M2A","0","true"," ",[33,143,92],{"id":144},"prevent-deployment-of-old-versions",[12,146,147],{},"The execution order of pipeline jobs can vary from run to run, which could cause undesired behavior. For example, a deployment job in a newer pipeline could finish before a deployment job in an older pipeline. This creates a race condition where the older deployment finishes later, overwriting the \"newer\" deployment.",[12,149,150,151,155],{},"You can ensure that older deployment jobs are cancelled automatically when a newer deployment runs by enabling the ",[18,152,154],{"href":90,"rel":153},[],"prevent deployment of old versions"," feature.",[62,157,158,160,162,165],{},[65,159,119],{},[65,161,122],{},[65,163,164],{},"Pipeline-B finishes. Now SHA-B is on the production environment",[65,166,167],{},"Pipeline-A is canceled automatically because it was going to deploy SHA-A to production",[12,169,170],{},[171,172],"img",{"alt":92,"src":173},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1782398767/blog/Content%20Images/older_job.png",[101,175,177],{"id":176},"deployment-freeze","Deployment Freeze",[12,179,180],{},"To prevent deployments for a particular period, such as during a planned holiday when most employees are out, you can set up a deploy freeze. During a deploy freeze, no deployments can be executed. This is helpful to ensure that deployments do not happen unexpectedly.",[12,182,183,184,48],{},"Find more detailed information about ",[18,185,188],{"href":186,"rel":187},"https://docs.gitlab.com/ci/environments/deployment_safety/",[],"deployment safety",[12,190,191],{},[192,193,194],"strong",{},"Read more about GitLab and safety:",[62,196,197,204,211],{},[65,198,199],{},[18,200,203],{"href":201,"rel":202},"https://docs.gitlab.com/integration/jenkins/",[],"Capitalize on GitLab security tools",[65,205,206,207],{},"How app sec engineers ",[18,208,210],{"href":209},"/blog/secure-stage-for-appsec/","can use GitLab to improve security",[65,212,213,214],{},"Wondering ",[18,215,217],{"href":216},"/blog/soc2-compliance/","how secure GitLab is?",[12,219,220,221,226,227],{},"Cover image by ",[18,222,225],{"href":223,"rel":224},"https://unsplash.com/photos/qcpwU_oMyu8",[],"Mathew Schwartz"," on ",[18,228,231],{"href":229,"rel":230},"https://unsplash.com",[],"Unsplash",{"title":233,"searchDepth":234,"depth":234,"links":235},"",2,[236,238,239,242],{"id":35,"depth":237,"text":36},3,{"id":51,"depth":237,"text":52},{"id":103,"depth":234,"text":85,"children":240},[241],{"id":144,"depth":237,"text":92},{"id":176,"depth":234,"text":177},"engineering","2020-07-23","It's important to safeguard your deployment process. Here's our best advice to protect your environments.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678412/Blog/Hero%20Images/safe_deploy.jpg",{},true,"/en-us/blog/safe-deploys",{"title":5,"description":245,"ogTitle":5,"ogDescription":245,"noIndex":248,"ogImage":249,"ogUrl":254,"ogSiteName":255,"ogType":256,"canonicalUrls":254},"https://about.gitlab.com/blog/safe-deploys","https://about.gitlab.com","article","safe-deploys","en-us/blog/safe-deploys",[260,261,262],"CI/CD","releases","security","BlogPost","gDYocLz91JR1Uji7UfhwEIJbd3Pnh76gDv1XcZPP9iI",{"logo":266,"freeTrial":271,"sales":276,"login":281,"items":286,"search":612,"minimal":643,"duo":662,"switchNav":671,"pricingDeployment":682},{"config":267},{"href":268,"dataGaName":269,"dataGaLocation":270},"/","gitlab logo","header",{"text":272,"config":273},"Get free trial",{"href":274,"dataGaName":275,"dataGaLocation":270},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":277,"config":278},"Request a demo",{"href":279,"dataGaName":280,"dataGaLocation":270},"/sales/?contact-topic=request-demo","sales",{"text":282,"config":283},"Sign in",{"href":284,"dataGaName":285,"dataGaLocation":270},"https://gitlab.com/users/sign_in/","sign in",[287,316,415,420,534,590],{"text":288,"config":289,"menu":291},"Platform",{"dataNavLevelOne":290},"platform",{"type":292,"columns":293},"cards",[294,300,308],{"title":288,"description":295,"link":296},"The intelligent orchestration platform for DevSecOps",{"text":297,"config":298},"Explore our Platform",{"href":299,"dataGaName":290,"dataGaLocation":270},"/platform/",{"title":301,"description":302,"link":303},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":304,"config":305},"Meet GitLab Duo",{"href":306,"dataGaName":307,"dataGaLocation":270},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":309,"description":310,"link":311},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":312,"config":313},"Learn more",{"href":314,"dataGaName":315,"dataGaLocation":270},"/why-gitlab/","why gitlab",{"text":317,"left":251,"config":318,"menu":320},"Product",{"dataNavLevelOne":319},"solutions",{"type":321,"link":322,"columns":326,"feature":394},"lists",{"text":323,"config":324},"View all Solutions",{"href":325,"dataGaName":319,"dataGaLocation":270},"/solutions/",[327,350,373],{"title":328,"description":329,"link":330,"items":335},"Automation","CI/CD and automation to accelerate deployment",{"config":331},{"icon":332,"href":333,"dataGaName":334,"dataGaLocation":270},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[336,339,342,346],{"text":260,"config":337},{"href":338,"dataGaLocation":270,"dataGaName":260},"/solutions/continuous-integration/",{"text":301,"config":340},{"href":306,"dataGaLocation":270,"dataGaName":341},"gitlab duo agent platform - product menu",{"text":343,"config":344},"Source Code Management",{"href":345,"dataGaLocation":270,"dataGaName":343},"/solutions/source-code-management/",{"text":347,"config":348},"Automated Software Delivery",{"href":333,"dataGaLocation":270,"dataGaName":349},"Automated software delivery",{"title":351,"description":352,"link":353,"items":358},"Security","Deliver code faster without compromising security",{"config":354},{"href":355,"dataGaName":356,"dataGaLocation":270,"icon":357},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[359,363,368],{"text":360,"config":361},"Application Security Testing",{"href":355,"dataGaName":362,"dataGaLocation":270},"Application security testing",{"text":364,"config":365},"Software Supply Chain Security",{"href":366,"dataGaLocation":270,"dataGaName":367},"/solutions/supply-chain/","Software supply chain security",{"text":369,"config":370},"Software Compliance",{"href":371,"dataGaName":372,"dataGaLocation":270},"/solutions/software-compliance/","software compliance",{"title":374,"link":375,"items":380},"Measurement",{"config":376},{"icon":377,"href":378,"dataGaName":379,"dataGaLocation":270},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[381,385,389],{"text":382,"config":383},"Visibility & Measurement",{"href":378,"dataGaLocation":270,"dataGaName":384},"Visibility and Measurement",{"text":386,"config":387},"Value Stream Management",{"href":388,"dataGaLocation":270,"dataGaName":386},"/solutions/value-stream-management/",{"text":390,"config":391},"Analytics & Insights",{"href":392,"dataGaLocation":270,"dataGaName":393},"/solutions/analytics-and-insights/","Analytics and insights",{"title":395,"type":321,"items":396},"GitLab for",[397,403,409],{"text":398,"config":399},"Enterprise",{"icon":400,"href":401,"dataGaLocation":270,"dataGaName":402},"Building","/enterprise/","enterprise",{"text":404,"config":405},"Small Business",{"icon":406,"href":407,"dataGaLocation":270,"dataGaName":408},"Work","/small-business/","small business",{"text":410,"config":411},"Public Sector",{"icon":412,"href":413,"dataGaLocation":270,"dataGaName":414},"Organization","/solutions/public-sector/","public sector",{"text":416,"config":417},"Pricing",{"href":418,"dataGaName":419,"dataGaLocation":270,"dataNavLevelOne":419},"/pricing/","pricing",{"text":421,"config":422,"menu":424},"Resources",{"dataNavLevelOne":423},"resources",{"type":321,"link":425,"columns":429,"feature":523},{"text":426,"config":427},"View all resources",{"href":428,"dataGaName":423,"dataGaLocation":270},"/resources/",[430,463,490],{"title":431,"items":432},"Getting started",[433,438,443,448,453,458],{"text":434,"config":435},"Install",{"href":436,"dataGaName":437,"dataGaLocation":270},"/install/","install",{"text":439,"config":440},"Quick start guides",{"href":441,"dataGaName":442,"dataGaLocation":270},"/get-started/","quick setup checklists",{"text":444,"config":445},"Learn",{"href":446,"dataGaLocation":270,"dataGaName":447},"https://university.gitlab.com/","learn",{"text":449,"config":450},"Product documentation",{"href":451,"dataGaName":452,"dataGaLocation":270},"https://docs.gitlab.com/","product documentation",{"text":454,"config":455},"Best practice videos",{"href":456,"dataGaName":457,"dataGaLocation":270},"/getting-started-videos/","best practice videos",{"text":459,"config":460},"Integrations",{"href":461,"dataGaName":462,"dataGaLocation":270},"/integrations/","integrations",{"title":464,"items":465},"Discover",[466,471,476,481,485],{"text":467,"config":468},"Customer success stories",{"href":469,"dataGaName":470,"dataGaLocation":270},"/customers/","customer success stories",{"text":472,"config":473},"Blog",{"href":474,"dataGaName":475,"dataGaLocation":270},"/blog/","blog",{"text":477,"config":478},"Demo Hub",{"href":479,"dataGaName":480,"dataGaLocation":270},"/demo-hub/","demo hub",{"text":482,"config":483},"The Source",{"href":484,"dataGaName":475,"dataGaLocation":270},"/the-source/",{"text":486,"config":487},"Remote",{"href":488,"dataGaName":489,"dataGaLocation":270},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":491,"items":492},"Connect",[493,498,503,508,513,518],{"text":494,"config":495},"GitLab Services",{"href":496,"dataGaName":497,"dataGaLocation":270},"/services/","services",{"text":499,"config":500},"Contribute",{"href":501,"dataGaName":502,"dataGaLocation":270},"https://contributors.gitlab.com","contribute",{"text":504,"config":505},"Community",{"href":506,"dataGaName":507,"dataGaLocation":270},"/community/","community",{"text":509,"config":510},"Forum",{"href":511,"dataGaName":512,"dataGaLocation":270},"https://forum.gitlab.com/","forum",{"text":514,"config":515},"Events",{"href":516,"dataGaName":517,"dataGaLocation":270},"/events/","events",{"text":519,"config":520},"Partners",{"href":521,"dataGaName":522,"dataGaLocation":270},"/partners/","partners",{"config":524,"title":527,"text":528,"link":529},{"background":525,"textColor":526},"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":530,"config":531},"Read the latest",{"href":532,"dataGaName":533,"dataGaLocation":270},"/whats-new/","whats new",{"text":535,"config":536,"menu":538},"Company",{"dataNavLevelOne":537},"company",{"type":321,"columns":539},[540],{"items":541},[542,547,553,555,560,565,570,575,580,585],{"text":543,"config":544},"About",{"href":545,"dataGaName":546,"dataGaLocation":270},"/company/","about",{"text":548,"config":549,"footerGa":552},"Jobs",{"href":550,"dataGaName":551,"dataGaLocation":270},"/jobs/","jobs",{"dataGaName":551},{"text":514,"config":554},{"href":516,"dataGaName":517,"dataGaLocation":270},{"text":556,"config":557},"Leadership",{"href":558,"dataGaName":559,"dataGaLocation":270},"/company/team/e-group/","leadership",{"text":561,"config":562},"Handbook",{"href":563,"dataGaName":564,"dataGaLocation":270},"https://handbook.gitlab.com/","handbook",{"text":566,"config":567},"Investor relations",{"href":568,"dataGaName":569,"dataGaLocation":270},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":571,"config":572},"Trust Center",{"href":573,"dataGaName":574,"dataGaLocation":270},"/security/","trust center",{"text":576,"config":577},"AI Transparency Center",{"href":578,"dataGaName":579,"dataGaLocation":270},"/ai-transparency-center/","ai transparency center",{"text":581,"config":582},"Newsletter",{"href":583,"dataGaName":584,"dataGaLocation":270},"/company/contact/#contact-forms","newsletter",{"text":586,"config":587},"Press",{"href":588,"dataGaName":589,"dataGaLocation":270},"/press/","press",{"text":591,"config":592,"menu":593},"Contact us",{"dataNavLevelOne":537},{"type":321,"columns":594},[595],{"items":596},[597,602,607],{"text":598,"config":599},"Talk to sales",{"href":600,"dataGaName":601,"dataGaLocation":270},"/sales/","talk to sales",{"text":603,"config":604},"Support portal",{"href":605,"dataGaName":606,"dataGaLocation":270},"https://support.gitlab.com/hc/en-us","support portal",{"text":608,"config":609},"Customer portal",{"href":610,"dataGaName":611,"dataGaLocation":270},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":613,"login":614,"suggestions":621},"Close",{"text":615,"link":616},"To search repositories and projects, login to",{"text":617,"config":618},"gitlab.com",{"href":284,"dataGaName":619,"dataGaLocation":620},"search login","search",{"text":622,"default":623},"Suggestions",[624,626,630,632,636,640],{"text":301,"config":625},{"href":306,"dataGaName":301,"dataGaLocation":620},{"text":627,"config":628},"Code Suggestions (AI)",{"href":629,"dataGaName":627,"dataGaLocation":620},"/solutions/code-suggestions/",{"text":260,"config":631},{"href":338,"dataGaName":260,"dataGaLocation":620},{"text":633,"config":634},"GitLab on AWS",{"href":635,"dataGaName":633,"dataGaLocation":620},"/partners/technology-partners/aws/",{"text":637,"config":638},"GitLab on Google Cloud",{"href":639,"dataGaName":637,"dataGaLocation":620},"/partners/technology-partners/google-cloud-platform/",{"text":641,"config":642},"Why GitLab?",{"href":314,"dataGaName":641,"dataGaLocation":620},{"freeTrial":644,"mobileIcon":649,"desktopIcon":654,"secondaryButton":657},{"text":645,"config":646},"Start free trial",{"href":647,"dataGaName":275,"dataGaLocation":648},"https://gitlab.com/-/trials/new/","nav",{"altText":650,"config":651},"Gitlab Icon",{"src":652,"dataGaName":653,"dataGaLocation":648},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":650,"config":655},{"src":656,"dataGaName":653,"dataGaLocation":648},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":658,"config":659},"Get Started",{"href":660,"dataGaName":661,"dataGaLocation":648},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":663,"mobileIcon":667,"desktopIcon":669},{"text":664,"config":665},"Learn more about GitLab Duo",{"href":306,"dataGaName":666,"dataGaLocation":648},"gitlab duo",{"altText":650,"config":668},{"src":652,"dataGaName":653,"dataGaLocation":648},{"altText":650,"config":670},{"src":656,"dataGaName":653,"dataGaLocation":648},{"button":672,"mobileIcon":677,"desktopIcon":679},{"text":673,"config":674},"/switch",{"href":675,"dataGaName":676,"dataGaLocation":648},"#contact","switch",{"altText":650,"config":678},{"src":652,"dataGaName":653,"dataGaLocation":648},{"altText":650,"config":680},{"src":681,"dataGaName":653,"dataGaLocation":648},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":683,"mobileIcon":688,"desktopIcon":690},{"text":684,"config":685},"Back to pricing",{"href":418,"dataGaName":686,"dataGaLocation":648,"icon":687},"back to pricing","GoBack",{"altText":650,"config":689},{"src":652,"dataGaName":653,"dataGaLocation":648},{"altText":650,"config":691},{"src":656,"dataGaName":653,"dataGaLocation":648},{"title":693,"titleMobile":694,"button":695,"config":700},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":312,"config":696},{"href":697,"dataGaName":698,"dataGaLocation":699},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":701,"disabled":248},"release",{"data":703},{"text":704,"source":705,"edit":711,"contribute":716,"config":721,"items":726,"minimal":935},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":706,"config":707},"View page source",{"href":708,"dataGaName":709,"dataGaLocation":710},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":712,"config":713},"Edit this page",{"href":714,"dataGaName":715,"dataGaLocation":710},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":717,"config":718},"Please contribute",{"href":719,"dataGaName":720,"dataGaLocation":710},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":722,"facebook":723,"youtube":724,"linkedin":725},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[727,774,827,871,903],{"title":416,"links":728,"subMenu":743},[729,733,738],{"text":730,"config":731},"View plans",{"href":418,"dataGaName":732,"dataGaLocation":710},"view plans",{"text":734,"config":735},"Why Premium?",{"href":736,"dataGaName":737,"dataGaLocation":710},"/pricing/premium/","why premium",{"text":739,"config":740},"Why Ultimate?",{"href":741,"dataGaName":742,"dataGaLocation":710},"/pricing/ultimate/","why ultimate",[744],{"title":745,"links":746},"Contact Us",[747,750,752,754,759,764,769],{"text":748,"config":749},"Contact sales",{"href":600,"dataGaName":280,"dataGaLocation":710},{"text":603,"config":751},{"href":605,"dataGaName":606,"dataGaLocation":710},{"text":608,"config":753},{"href":610,"dataGaName":611,"dataGaLocation":710},{"text":755,"config":756},"Status",{"href":757,"dataGaName":758,"dataGaLocation":710},"https://status.gitlab.com/","status",{"text":760,"config":761},"Terms of use",{"href":762,"dataGaName":763,"dataGaLocation":710},"/terms/","terms of use",{"text":765,"config":766},"Privacy statement",{"href":767,"dataGaName":768,"dataGaLocation":710},"/privacy/","privacy statement",{"text":770,"config":771},"Cookie preferences",{"dataGaName":772,"dataGaLocation":710,"id":773,"isOneTrustButton":251},"cookie preferences","ot-sdk-btn",{"title":317,"links":775,"subMenu":784},[776,780],{"text":777,"config":778},"DevSecOps platform",{"href":299,"dataGaName":779,"dataGaLocation":710},"devsecops platform",{"text":781,"config":782},"AI-Assisted Development",{"href":306,"dataGaName":783,"dataGaLocation":710},"ai-assisted development",[785],{"title":786,"links":787},"Topics",[788,792,797,802,807,812,817,822],{"text":789,"config":790},"CICD",{"href":26,"dataGaName":791,"dataGaLocation":710},"cicd",{"text":793,"config":794},"GitOps",{"href":795,"dataGaName":796,"dataGaLocation":710},"/topics/gitops/","gitops",{"text":798,"config":799},"DevOps",{"href":800,"dataGaName":801,"dataGaLocation":710},"/topics/devops/","devops",{"text":803,"config":804},"Version Control",{"href":805,"dataGaName":806,"dataGaLocation":710},"/topics/version-control/","version control",{"text":808,"config":809},"DevSecOps",{"href":810,"dataGaName":811,"dataGaLocation":710},"/topics/devsecops/","devsecops",{"text":813,"config":814},"Cloud Native",{"href":815,"dataGaName":816,"dataGaLocation":710},"/topics/cloud-native/","cloud native",{"text":818,"config":819},"AI for Coding",{"href":820,"dataGaName":821,"dataGaLocation":710},"/topics/devops/ai-for-coding/","ai for coding",{"text":823,"config":824},"Agentic AI",{"href":825,"dataGaName":826,"dataGaLocation":710},"/topics/agentic-ai/","agentic ai",{"title":828,"links":829},"Solutions",[830,832,834,839,843,846,850,853,855,858,861,866],{"text":360,"config":831},{"href":355,"dataGaName":360,"dataGaLocation":710},{"text":349,"config":833},{"href":333,"dataGaName":334,"dataGaLocation":710},{"text":835,"config":836},"Agile development",{"href":837,"dataGaName":838,"dataGaLocation":710},"/solutions/agile-delivery/","agile delivery",{"text":840,"config":841},"SCM",{"href":345,"dataGaName":842,"dataGaLocation":710},"source code management",{"text":789,"config":844},{"href":338,"dataGaName":845,"dataGaLocation":710},"continuous integration & delivery",{"text":847,"config":848},"Value stream management",{"href":388,"dataGaName":849,"dataGaLocation":710},"value stream management",{"text":793,"config":851},{"href":852,"dataGaName":796,"dataGaLocation":710},"/solutions/gitops/",{"text":398,"config":854},{"href":401,"dataGaName":402,"dataGaLocation":710},{"text":856,"config":857},"Small business",{"href":407,"dataGaName":408,"dataGaLocation":710},{"text":859,"config":860},"Public sector",{"href":413,"dataGaName":414,"dataGaLocation":710},{"text":862,"config":863},"Education",{"href":864,"dataGaName":865,"dataGaLocation":710},"/solutions/education/","education",{"text":867,"config":868},"Financial services",{"href":869,"dataGaName":870,"dataGaLocation":710},"/solutions/finance/","financial services",{"title":421,"links":872},[873,875,877,879,882,884,887,889,891,893,895,897,899,901],{"text":434,"config":874},{"href":436,"dataGaName":437,"dataGaLocation":710},{"text":439,"config":876},{"href":441,"dataGaName":442,"dataGaLocation":710},{"text":444,"config":878},{"href":446,"dataGaName":447,"dataGaLocation":710},{"text":449,"config":880},{"href":451,"dataGaName":881,"dataGaLocation":710},"docs",{"text":472,"config":883},{"href":474,"dataGaName":475,"dataGaLocation":710},{"text":885,"config":886},"What's new",{"href":532,"dataGaName":533,"dataGaLocation":710},{"text":467,"config":888},{"href":469,"dataGaName":470,"dataGaLocation":710},{"text":486,"config":890},{"href":488,"dataGaName":489,"dataGaLocation":710},{"text":494,"config":892},{"href":496,"dataGaName":497,"dataGaLocation":710},{"text":499,"config":894},{"href":501,"dataGaName":502,"dataGaLocation":710},{"text":504,"config":896},{"href":506,"dataGaName":507,"dataGaLocation":710},{"text":509,"config":898},{"href":511,"dataGaName":512,"dataGaLocation":710},{"text":514,"config":900},{"href":516,"dataGaName":517,"dataGaLocation":710},{"text":519,"config":902},{"href":521,"dataGaName":522,"dataGaLocation":710},{"title":535,"links":904},[905,907,909,911,913,915,919,924,926,928,930],{"text":543,"config":906},{"href":545,"dataGaName":537,"dataGaLocation":710},{"text":548,"config":908},{"href":550,"dataGaName":551,"dataGaLocation":710},{"text":556,"config":910},{"href":558,"dataGaName":559,"dataGaLocation":710},{"text":561,"config":912},{"href":563,"dataGaName":564,"dataGaLocation":710},{"text":566,"config":914},{"href":568,"dataGaName":569,"dataGaLocation":710},{"text":916,"config":917},"Sustainability",{"href":918,"dataGaName":916,"dataGaLocation":710},"/sustainability/",{"text":920,"config":921},"Diversity, inclusion and belonging (DIB)",{"href":922,"dataGaName":923,"dataGaLocation":710},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":571,"config":925},{"href":573,"dataGaName":574,"dataGaLocation":710},{"text":581,"config":927},{"href":583,"dataGaName":584,"dataGaLocation":710},{"text":586,"config":929},{"href":588,"dataGaName":589,"dataGaLocation":710},{"text":931,"config":932},"Modern Slavery Transparency Statement",{"href":933,"dataGaName":934,"dataGaLocation":710},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":936},[937,940,943],{"text":938,"config":939},"Terms",{"href":762,"dataGaName":763,"dataGaLocation":710},{"text":941,"config":942},"Cookies",{"dataGaName":772,"dataGaLocation":710,"id":773,"isOneTrustButton":251},{"text":944,"config":945},"Privacy",{"href":767,"dataGaName":768,"dataGaLocation":710},[947],{"id":948,"title":7,"body":247,"config":949,"content":951,"description":247,"extension":954,"meta":955,"navigation":251,"path":956,"seo":957,"stem":958,"__hash__":959},"blogAuthors/en-us/blog/authors/orit-golowinski.yml",{"template":950},"BlogAuthor",{"name":7,"config":952},{"headshot":233,"ctfId":953},"ogolowinski","yml",{},"/en-us/blog/authors/orit-golowinski",{},"en-us/blog/authors/orit-golowinski","g_opT-rlrAvUJqtvwZi1IMi9eS5RnsdTKwcP21y6bK0",[961,970,978],{"title":962,"description":963,"heroImage":964,"category":243,"date":965,"authors":966,"slug":969,"externalUrl":247},"Confidential AI for GitLab Self-Hosted","Give developers AI coding agents in GitLab Duo without source code leaving a hardware-encrypted boundary — no GPUs needed.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1773866173/vte9qh8rriznvyclhkes.png","2026-08-06",[967,968],"Mathias Ewald","Martin Paloncy, Edgeless Systems","confidential-ai-for-gitlab-self-hosted",{"title":971,"description":972,"heroImage":973,"category":243,"date":974,"authors":975,"slug":977,"externalUrl":247},"Green DevOps: Why carbon measurement belongs in your CI/CD pipeline","CI/CD pipelines have a hidden carbon cost. Here's why measuring it matters, and how you can get started with Eco CI and Carmen in GitLab.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1765809212/noh0mdfn9o94ry9ykura.png","2026-07-09",[976],"Lysanne Pinto","green-devops-carbon-measurement-cicd-pipeline",{"title":979,"description":980,"heroImage":981,"category":243,"date":982,"authors":983,"slug":985,"externalUrl":247},"How to build CI/CD observability at scale","This practical guide to GitLab pipeline analytics helps self-managed users gain operational insights using Prometheus and Grafana.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1774465167/n5hlvrsrheadeccyr1oz.png","2026-04-28",[984],"Paul Meresanu","how-to-build-ci-cd-observability-at-scale",{"promotions":987},[988,1002,1014,1025],{"id":989,"categories":990,"header":992,"text":993,"button":994,"image":999},"ai-modernization",[991],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":995,"config":996},"Get your AI maturity score",{"href":997,"dataGaName":998,"dataGaLocation":475},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1000},{"src":1001},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1003,"categories":1004,"header":1006,"text":993,"button":1007,"image":1011},"devops-modernization",[1005,811],"product","Are you just managing tools or shipping innovation?",{"text":1008,"config":1009},"Get your DevOps maturity score",{"href":1010,"dataGaName":998,"dataGaLocation":475},"/assessments/devops-modernization-assessment/",{"config":1012},{"src":1013},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1015,"categories":1016,"header":1017,"text":993,"button":1018,"image":1022},"security-modernization",[262],"Are you trading speed for security?",{"text":1019,"config":1020},"Get your security maturity score",{"href":1021,"dataGaName":998,"dataGaLocation":475},"/assessments/security-modernization-assessment/",{"config":1023},{"src":1024},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1026,"paths":1027,"header":1030,"text":1031,"button":1032,"image":1037},"github-azure-migration",[1028,1029],"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":1033,"config":1034},"See how GitLab compares to GitHub",{"href":1035,"dataGaName":1036,"dataGaLocation":475},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1038},{"src":1013},{"header":1040,"blurb":1041,"button":1042,"secondaryButton":1047},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1043,"config":1044},"Get your free trial",{"href":1045,"dataGaName":275,"dataGaLocation":1046},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":748,"config":1048},{"href":600,"dataGaName":280,"dataGaLocation":1046},1786803737307]