[{"data":1,"prerenderedAt":1393},["ShallowReactive",2],{"/blog/cascading-merge-requests-with-gitlab-flow":3,"navigation-en-us":607,"banner-en-us":1033,"footer-en-us":1043,"blog-post-authors-en-us-Madou Coulibaly":1288,"blog-related-posts-en-us-cascading-merge-requests-with-gitlab-flow":1303,"blog-promotions-en-us":1329,"next-steps-en-us":1383},{"id":4,"title":5,"authors":6,"body":8,"category":585,"date":586,"description":587,"extension":588,"externalUrl":589,"faq":589,"featured":590,"heroImage":591,"meta":592,"navigation":590,"path":593,"seo":594,"slug":599,"stem":600,"tags":601,"template":605,"updatedDate":589,"__hash__":606},"blogPosts/en-us/blog/cascading-merge-requests-with-gitlab-flow.md","How to adopt a cascading merge request strategy with GitLab Flow",[7],"Madou Coulibaly",{"type":9,"value":10,"toc":574},"minimark",[11,32,42,47,50,55,65,69,80,84,101,108,112,119,146,153,207,224,416,422,440,443,449,471,475,484,502,508,512,521,527,531,534,548,553,564,570],[12,13,14,15,19,20,23,24,27,28,31],"p",{},"Git offers a range of branching strategies and workflows that can be utilized to enhance organization, efficiency, and code quality. Employing a well-defined workflow helps foster a successful and streamlined development process. By implementing the release branches using GitLab Flow, you can effectively handle multiple product releases. However, when it comes to fixing bugs, it often becomes necessary to apply the fix across various stable branches such as ",[16,17,18],"code",{},"main",",  ",[16,21,22],{},"stable-1.0",", ",[16,25,26],{},"stable-1.1",", and ",[16,29,30],{},"stable-2.0",". The process of applying the fix to multiple locations can be time-consuming, as it involves the manual creation of multiple merge requests.",[12,33,34,35,41],{},"By consolidating updates in a single branch and propagating them to other branches, the cascading merge approach establishes a central source of truth, reducing confusion and maintaining consistency. In this blogpost, we will guide you through setting up this approach for your GitLab project using ",[36,37,40],"a",{"href":38,"rel":39},"https://github.com/unblu/ucascade",[],"ucascade bot",".",[43,44,46],"h2",{"id":45},"getting-started","Getting started",[12,48,49],{},"To get started, you'll need the following prerequisites:",[51,52,54],"h3",{"id":53},"environment","Environment",[56,57,58,62],"ul",{},[59,60,61],"li",{},"a GitLab project that implemented Release Branches Strategy",[59,63,64],{},"a Kubernetes cluster",[51,66,68],{"id":67},"cli","CLI",[56,70,71,74,77],{},[59,72,73],{},"git",[59,75,76],{},"kubectl",[59,78,79],{},"docker",[51,81,83],{"id":82},"project-access-tokens","Project access tokens",[12,85,86,87,92,93,96,97,100],{},"Follow the instructions on the ",[36,88,91],{"href":89,"rel":90},"https://docs.gitlab.com/user/project/settings/project_access_tokens/#create-a-project-access-token",[],"Project access tokens page"," to create two project access tokens –",[16,94,95],{},"ucascade"," and ",[16,98,99],{},"ucascade-approver"," – with the API scope in your GitLab project.",[12,102,103],{},[104,105],"img",{"alt":106,"src":107},"project access tokens","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782397791/blog/Content%20Images/2023-06-22-cascading-merge-requests-with-gitlab-flow/pat.png",[43,109,111],{"id":110},"deploy-ucascade-bot-on-kubernetes","Deploy ucascade bot on Kubernetes",[12,113,114,115,118],{},"First, create the ",[16,116,117],{},"bots-fleet"," namespace on Kubernetes.",[120,121,126],"pre",{"className":122,"code":123,"language":124,"meta":125,"style":125},"language-shell shiki shiki-themes github-light","kubectl create namespace bots-fleet\n","shell","",[16,127,128],{"__ignoreMap":125},[129,130,133,136,140,143],"span",{"class":131,"line":132},"line",1,[129,134,76],{"class":135},"s7eDp",[129,137,139],{"class":138},"sYBdl"," create",[129,141,142],{"class":138}," namespace",[129,144,145],{"class":138}," bots-fleet\n",[12,147,148,149,152],{},"Then, create the ",[16,150,151],{},"cascading-merge-secret"," secret that contains the GitLab project access tokens created previously.",[120,154,156],{"className":122,"code":155,"language":124,"meta":125,"style":125},"kubectl create secret generic cascading-merge-secret -n bots-fleet \\\n--from-literal=gitlab-host=https://gitlab.com \\\n--from-literal=gitlab-api-token=\u003CUCASCADE_PROJECT_ACCESS_TOKEN> \\\n--from-literal=gitlab-api-token-approver=\u003CAPPROVER_BOT_PROJECT_ACCESS_TOKEN>\n",[16,157,158,183,193,201],{"__ignoreMap":125},[129,159,160,162,164,167,170,173,177,180],{"class":131,"line":132},[129,161,76],{"class":135},[129,163,139],{"class":138},[129,165,166],{"class":138}," secret",[129,168,169],{"class":138}," generic",[129,171,172],{"class":138}," cascading-merge-secret",[129,174,176],{"class":175},"sYu0t"," -n",[129,178,179],{"class":138}," bots-fleet",[129,181,182],{"class":175}," \\\n",[129,184,186,190],{"class":131,"line":185},2,[129,187,189],{"class":188},"sgsFI","--from-literal=gitlab-host=https://gitlab.com ",[129,191,192],{"class":175},"\\\n",[129,194,196,199],{"class":131,"line":195},3,[129,197,198],{"class":188},"--from-literal=gitlab-api-token=\u003CUCASCADE_PROJECT_ACCESS_TOKEN> ",[129,200,192],{"class":175},[129,202,204],{"class":131,"line":203},4,[129,205,206],{"class":188},"--from-literal=gitlab-api-token-approver=\u003CAPPROVER_BOT_PROJECT_ACCESS_TOKEN>\n",[12,208,209,210,215,216,219,220,223],{},"Once done, (fork and) clone the ",[36,211,214],{"href":212,"rel":213},"https://gitlab.com/madou-stories/bots-fleet/cascading-merge",[],"Cascading Merge repository"," that contains the Kubernetes manifests for the bot and replace the ",[16,217,218],{},"host"," field in the ",[16,221,222],{},"kube/ingress.yaml"," file according to your Kubernetes domain.",[120,225,229],{"className":226,"code":227,"language":228,"meta":125,"style":125},"language-yaml shiki shiki-themes github-light","apiVersion: networking.k8s.io/v1\nkind: Ingress\nmetadata:\n  annotations:\n    kubernetes.io/ingress.class: nginx\n  name: ucascade\n  namespace: bots-fleet\nspec:\n  rules:\n  - host: ucascade.\u003CKUBERNETES_BASED_DOMAIN>\n    http:\n      paths:\n      - backend:\n          service:\n            name: ucascade\n            port:\n              number: 80\n        path: /\n        pathType: Prefix\n\n","yaml",[16,230,231,243,253,261,268,279,290,301,309,317,330,338,346,357,365,375,383,394,405],{"__ignoreMap":125},[129,232,233,237,240],{"class":131,"line":132},[129,234,236],{"class":235},"shJU0","apiVersion",[129,238,239],{"class":188},": ",[129,241,242],{"class":138},"networking.k8s.io/v1\n",[129,244,245,248,250],{"class":131,"line":185},[129,246,247],{"class":235},"kind",[129,249,239],{"class":188},[129,251,252],{"class":138},"Ingress\n",[129,254,255,258],{"class":131,"line":195},[129,256,257],{"class":235},"metadata",[129,259,260],{"class":188},":\n",[129,262,263,266],{"class":131,"line":203},[129,264,265],{"class":235},"  annotations",[129,267,260],{"class":188},[129,269,271,274,276],{"class":131,"line":270},5,[129,272,273],{"class":235},"    kubernetes.io/ingress.class",[129,275,239],{"class":188},[129,277,278],{"class":138},"nginx\n",[129,280,282,285,287],{"class":131,"line":281},6,[129,283,284],{"class":235},"  name",[129,286,239],{"class":188},[129,288,289],{"class":138},"ucascade\n",[129,291,293,296,298],{"class":131,"line":292},7,[129,294,295],{"class":235},"  namespace",[129,297,239],{"class":188},[129,299,300],{"class":138},"bots-fleet\n",[129,302,304,307],{"class":131,"line":303},8,[129,305,306],{"class":235},"spec",[129,308,260],{"class":188},[129,310,312,315],{"class":131,"line":311},9,[129,313,314],{"class":235},"  rules",[129,316,260],{"class":188},[129,318,320,323,325,327],{"class":131,"line":319},10,[129,321,322],{"class":188},"  - ",[129,324,218],{"class":235},[129,326,239],{"class":188},[129,328,329],{"class":138},"ucascade.\u003CKUBERNETES_BASED_DOMAIN>\n",[129,331,333,336],{"class":131,"line":332},11,[129,334,335],{"class":235},"    http",[129,337,260],{"class":188},[129,339,341,344],{"class":131,"line":340},12,[129,342,343],{"class":235},"      paths",[129,345,260],{"class":188},[129,347,349,352,355],{"class":131,"line":348},13,[129,350,351],{"class":188},"      - ",[129,353,354],{"class":235},"backend",[129,356,260],{"class":188},[129,358,360,363],{"class":131,"line":359},14,[129,361,362],{"class":235},"          service",[129,364,260],{"class":188},[129,366,368,371,373],{"class":131,"line":367},15,[129,369,370],{"class":235},"            name",[129,372,239],{"class":188},[129,374,289],{"class":138},[129,376,378,381],{"class":131,"line":377},16,[129,379,380],{"class":235},"            port",[129,382,260],{"class":188},[129,384,386,389,391],{"class":131,"line":385},17,[129,387,388],{"class":235},"              number",[129,390,239],{"class":188},[129,392,393],{"class":175},"80\n",[129,395,397,400,402],{"class":131,"line":396},18,[129,398,399],{"class":235},"        path",[129,401,239],{"class":188},[129,403,404],{"class":138},"/\n",[129,406,408,411,413],{"class":131,"line":407},19,[129,409,410],{"class":235},"        pathType",[129,412,239],{"class":188},[129,414,415],{"class":138},"Prefix\n",[12,417,418,419,421],{},"Now, you are ready to deploy the ",[16,420,95],{}," bot.",[120,423,425],{"className":122,"code":424,"language":124,"meta":125,"style":125},"kubectl apply -f kube/\n",[16,426,427],{"__ignoreMap":125},[129,428,429,431,434,437],{"class":131,"line":132},[129,430,76],{"class":135},[129,432,433],{"class":138}," apply",[129,435,436],{"class":175}," -f",[129,438,439],{"class":138}," kube/\n",[12,441,442],{},"You should see the following resources deployed on Kubernetes:",[12,444,445],{},[104,446],{"alt":447,"src":448},"ucascade-k8s","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782397791/blog/Content%20Images/2023-06-22-cascading-merge-requests-with-gitlab-flow/ucascade-k8s.png",[12,450,451,455,456,458,459,464,465,470],{},[452,453,454],"strong",{},"Note:"," The ",[16,457,95],{}," image is based on the ",[36,460,463],{"href":461,"rel":462},"https://github.com/unblu/ucascade-bot",[],"ucascade-bot"," and is located in the ",[36,466,469],{"href":467,"rel":468},"https://gitlab.com/madou-stories/bots-fleet/cascading-merge/container_registry",[],"Container Registry"," of the Cascading Merge repository.",[43,472,474],{"id":473},"create-a-gitlab-webhook","Create a GitLab webhook",[12,476,477,478,483],{},"Follow the instructions on ",[36,479,482],{"href":480,"rel":481},"https://docs.gitlab.com/user/project/integrations/webhooks/#configure-a-webhook-in-gitlab",[],"the Webhooks page"," to create a webhook with the following variables:",[56,485,486,494],{},[59,487,488,239,491],{},[452,489,490],{},"URL",[16,492,493],{},"\u003CUCASCADE_INGRESS_URL>/ucascade/merge-request",[59,495,496,239,499],{},[452,497,498],{},"Trigger",[16,500,501],{},"Merge request events",[12,503,504],{},[104,505],{"alt":506,"src":507},"webhook","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782397791/blog/Content%20Images/2023-06-22-cascading-merge-requests-with-gitlab-flow/webhook.png",[43,509,511],{"id":510},"configure-your-cascading-merge-rule","Configure your Cascading Merge rule",[12,513,514,515,520],{},"Create a file called ucascade.json at the root level of your GitLab project as defined in ",[36,516,519],{"href":517,"rel":518},"https://unblu.github.io/ucascade/tech-docs/11_ucascade-configuration-file.html#_configuration_file",[],"configuration file"," and matched with your release definition.",[12,522,523],{},[104,524],{"alt":525,"src":526},"configuration","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782397791/blog/Content%20Images/2023-06-22-cascading-merge-requests-with-gitlab-flow/configuration.png",[43,528,530],{"id":529},"testing-the-cascading-merge","Testing the Cascading Merge",[12,532,533],{},"Now create a branch and an MR from your default branch, make a change, and merge it. The ucascade bot will propagate the change to all other release branches by automatically creating cascading MRs. The following video demonstrates the process:",[535,536,539,540],"figure",{"className":537},[538],"video_container","\n  ",[541,542,547],"iframe",{"src":543,"title":544,"frameBorder":545,"allowFullScreen":546},"https://www.youtube.com/embed/Ej7xf8axWMs","Cascading Merge Approach","0","true"," ",[549,550,552],"h1",{"id":551},"additional-resources","Additional resources",[12,554,555,556,558,559,41],{},"Find more information about the ",[16,557,95],{}," bot in the ",[36,560,563],{"href":561,"rel":562},"https://unblu.github.io/ucascade/index.html",[],"ucascade documentation",[12,565,566],{},[567,568,569],"em",{},"Special thank you to Jérémie Bresson for authoring and open sourcing this amazing bot!",[571,572,573],"style",{},"html pre.shiki code .s7eDp, html code.shiki .s7eDp{--shiki-default:#6F42C1}html pre.shiki code .sYBdl, html code.shiki .sYBdl{--shiki-default:#032F62}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html pre.shiki code .sYu0t, html code.shiki .sYu0t{--shiki-default:#005CC5}html pre.shiki code .sgsFI, html code.shiki .sgsFI{--shiki-default:#24292E}html pre.shiki code .shJU0, html code.shiki .shJU0{--shiki-default:#22863A}",{"title":125,"searchDepth":185,"depth":185,"links":575},[576,581,582,583,584],{"id":45,"depth":185,"text":46,"children":577},[578,579,580],{"id":53,"depth":195,"text":54},{"id":67,"depth":195,"text":68},{"id":82,"depth":195,"text":83},{"id":110,"depth":185,"text":111},{"id":473,"depth":185,"text":474},{"id":510,"depth":185,"text":511},{"id":529,"depth":185,"text":530},"engineering","2023-08-31","This tutorial explains how to consolidate updates in a single branch and propagate them to other branches using ucascade bot.","md",null,true,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679851/Blog/Hero%20Images/cascade.jpg",{},"/en-us/blog/cascading-merge-requests-with-gitlab-flow",{"title":5,"description":587,"ogTitle":5,"ogDescription":587,"noIndex":595,"ogImage":591,"ogUrl":596,"ogSiteName":597,"ogType":598,"canonicalUrls":596},false,"https://about.gitlab.com/blog/cascading-merge-requests-with-gitlab-flow","https://about.gitlab.com","article","cascading-merge-requests-with-gitlab-flow","en-us/blog/cascading-merge-requests-with-gitlab-flow",[602,603,73,604],"CI/CD","code review","tutorial","BlogPost","SRKpGyNlDYZsscnsH2cHVKTbM7QG1CYRIBmPbH9njp8",{"logo":608,"freeTrial":613,"sales":618,"login":623,"items":628,"search":953,"minimal":984,"duo":1003,"switchNav":1012,"pricingDeployment":1023},{"config":609},{"href":610,"dataGaName":611,"dataGaLocation":612},"/","gitlab logo","header",{"text":614,"config":615},"Get free trial",{"href":616,"dataGaName":617,"dataGaLocation":612},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":619,"config":620},"Request a demo",{"href":621,"dataGaName":622,"dataGaLocation":612},"/sales/?contact-topic=request-demo","sales",{"text":624,"config":625},"Sign in",{"href":626,"dataGaName":627,"dataGaLocation":612},"https://gitlab.com/users/sign_in/","sign in",[629,658,757,762,875,931],{"text":630,"config":631,"menu":633},"Platform",{"dataNavLevelOne":632},"platform",{"type":634,"columns":635},"cards",[636,642,650],{"title":630,"description":637,"link":638},"The intelligent orchestration platform for DevSecOps",{"text":639,"config":640},"Explore our Platform",{"href":641,"dataGaName":632,"dataGaLocation":612},"/platform/",{"title":643,"description":644,"link":645},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":646,"config":647},"Meet GitLab Duo",{"href":648,"dataGaName":649,"dataGaLocation":612},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":651,"description":652,"link":653},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":654,"config":655},"Learn more",{"href":656,"dataGaName":657,"dataGaLocation":612},"/why-gitlab/","why gitlab",{"text":659,"left":590,"config":660,"menu":662},"Product",{"dataNavLevelOne":661},"solutions",{"type":663,"link":664,"columns":668,"feature":736},"lists",{"text":665,"config":666},"View all Solutions",{"href":667,"dataGaName":661,"dataGaLocation":612},"/solutions/",[669,692,715],{"title":670,"description":671,"link":672,"items":677},"Automation","CI/CD and automation to accelerate deployment",{"config":673},{"icon":674,"href":675,"dataGaName":676,"dataGaLocation":612},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[678,681,684,688],{"text":602,"config":679},{"href":680,"dataGaLocation":612,"dataGaName":602},"/solutions/continuous-integration/",{"text":643,"config":682},{"href":648,"dataGaLocation":612,"dataGaName":683},"gitlab duo agent platform - product menu",{"text":685,"config":686},"Source Code Management",{"href":687,"dataGaLocation":612,"dataGaName":685},"/solutions/source-code-management/",{"text":689,"config":690},"Automated Software Delivery",{"href":675,"dataGaLocation":612,"dataGaName":691},"Automated software delivery",{"title":693,"description":694,"link":695,"items":700},"Security","Deliver code faster without compromising security",{"config":696},{"href":697,"dataGaName":698,"dataGaLocation":612,"icon":699},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[701,705,710],{"text":702,"config":703},"Application Security Testing",{"href":697,"dataGaName":704,"dataGaLocation":612},"Application security testing",{"text":706,"config":707},"Software Supply Chain Security",{"href":708,"dataGaLocation":612,"dataGaName":709},"/solutions/supply-chain/","Software supply chain security",{"text":711,"config":712},"Software Compliance",{"href":713,"dataGaName":714,"dataGaLocation":612},"/solutions/software-compliance/","software compliance",{"title":716,"link":717,"items":722},"Measurement",{"config":718},{"icon":719,"href":720,"dataGaName":721,"dataGaLocation":612},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[723,727,731],{"text":724,"config":725},"Visibility & Measurement",{"href":720,"dataGaLocation":612,"dataGaName":726},"Visibility and Measurement",{"text":728,"config":729},"Value Stream Management",{"href":730,"dataGaLocation":612,"dataGaName":728},"/solutions/value-stream-management/",{"text":732,"config":733},"Analytics & Insights",{"href":734,"dataGaLocation":612,"dataGaName":735},"/solutions/analytics-and-insights/","Analytics and insights",{"title":737,"type":663,"items":738},"GitLab for",[739,745,751],{"text":740,"config":741},"Enterprise",{"icon":742,"href":743,"dataGaLocation":612,"dataGaName":744},"Building","/enterprise/","enterprise",{"text":746,"config":747},"Small Business",{"icon":748,"href":749,"dataGaLocation":612,"dataGaName":750},"Work","/small-business/","small business",{"text":752,"config":753},"Public Sector",{"icon":754,"href":755,"dataGaLocation":612,"dataGaName":756},"Organization","/solutions/public-sector/","public sector",{"text":758,"config":759},"Pricing",{"href":760,"dataGaName":761,"dataGaLocation":612,"dataNavLevelOne":761},"/pricing/","pricing",{"text":763,"config":764,"menu":766},"Resources",{"dataNavLevelOne":765},"resources",{"type":663,"link":767,"columns":771,"feature":864},{"text":768,"config":769},"View all resources",{"href":770,"dataGaName":765,"dataGaLocation":612},"/resources/",[772,804,831],{"title":46,"items":773},[774,779,784,789,794,799],{"text":775,"config":776},"Install",{"href":777,"dataGaName":778,"dataGaLocation":612},"/install/","install",{"text":780,"config":781},"Quick start guides",{"href":782,"dataGaName":783,"dataGaLocation":612},"/get-started/","quick setup checklists",{"text":785,"config":786},"Learn",{"href":787,"dataGaLocation":612,"dataGaName":788},"https://university.gitlab.com/","learn",{"text":790,"config":791},"Product documentation",{"href":792,"dataGaName":793,"dataGaLocation":612},"https://docs.gitlab.com/","product documentation",{"text":795,"config":796},"Best practice videos",{"href":797,"dataGaName":798,"dataGaLocation":612},"/getting-started-videos/","best practice videos",{"text":800,"config":801},"Integrations",{"href":802,"dataGaName":803,"dataGaLocation":612},"/integrations/","integrations",{"title":805,"items":806},"Discover",[807,812,817,822,826],{"text":808,"config":809},"Customer success stories",{"href":810,"dataGaName":811,"dataGaLocation":612},"/customers/","customer success stories",{"text":813,"config":814},"Blog",{"href":815,"dataGaName":816,"dataGaLocation":612},"/blog/","blog",{"text":818,"config":819},"Demo Hub",{"href":820,"dataGaName":821,"dataGaLocation":612},"/demo-hub/","demo hub",{"text":823,"config":824},"The Source",{"href":825,"dataGaName":816,"dataGaLocation":612},"/the-source/",{"text":827,"config":828},"Remote",{"href":829,"dataGaName":830,"dataGaLocation":612},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":832,"items":833},"Connect",[834,839,844,849,854,859],{"text":835,"config":836},"GitLab Services",{"href":837,"dataGaName":838,"dataGaLocation":612},"/services/","services",{"text":840,"config":841},"Contribute",{"href":842,"dataGaName":843,"dataGaLocation":612},"https://contributors.gitlab.com","contribute",{"text":845,"config":846},"Community",{"href":847,"dataGaName":848,"dataGaLocation":612},"/community/","community",{"text":850,"config":851},"Forum",{"href":852,"dataGaName":853,"dataGaLocation":612},"https://forum.gitlab.com/","forum",{"text":855,"config":856},"Events",{"href":857,"dataGaName":858,"dataGaLocation":612},"/events/","events",{"text":860,"config":861},"Partners",{"href":862,"dataGaName":863,"dataGaLocation":612},"/partners/","partners",{"config":865,"title":868,"text":869,"link":870},{"background":866,"textColor":867},"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":871,"config":872},"Read the latest",{"href":873,"dataGaName":874,"dataGaLocation":612},"/whats-new/","whats new",{"text":876,"config":877,"menu":879},"Company",{"dataNavLevelOne":878},"company",{"type":663,"columns":880},[881],{"items":882},[883,888,894,896,901,906,911,916,921,926],{"text":884,"config":885},"About",{"href":886,"dataGaName":887,"dataGaLocation":612},"/company/","about",{"text":889,"config":890,"footerGa":893},"Jobs",{"href":891,"dataGaName":892,"dataGaLocation":612},"/jobs/","jobs",{"dataGaName":892},{"text":855,"config":895},{"href":857,"dataGaName":858,"dataGaLocation":612},{"text":897,"config":898},"Leadership",{"href":899,"dataGaName":900,"dataGaLocation":612},"/company/team/e-group/","leadership",{"text":902,"config":903},"Handbook",{"href":904,"dataGaName":905,"dataGaLocation":612},"https://handbook.gitlab.com/","handbook",{"text":907,"config":908},"Investor relations",{"href":909,"dataGaName":910,"dataGaLocation":612},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":912,"config":913},"Trust Center",{"href":914,"dataGaName":915,"dataGaLocation":612},"/security/","trust center",{"text":917,"config":918},"AI Transparency Center",{"href":919,"dataGaName":920,"dataGaLocation":612},"/ai-transparency-center/","ai transparency center",{"text":922,"config":923},"Newsletter",{"href":924,"dataGaName":925,"dataGaLocation":612},"/company/contact/#contact-forms","newsletter",{"text":927,"config":928},"Press",{"href":929,"dataGaName":930,"dataGaLocation":612},"/press/","press",{"text":932,"config":933,"menu":934},"Contact us",{"dataNavLevelOne":878},{"type":663,"columns":935},[936],{"items":937},[938,943,948],{"text":939,"config":940},"Talk to sales",{"href":941,"dataGaName":942,"dataGaLocation":612},"/sales/","talk to sales",{"text":944,"config":945},"Support portal",{"href":946,"dataGaName":947,"dataGaLocation":612},"https://support.gitlab.com/hc/en-us","support portal",{"text":949,"config":950},"Customer portal",{"href":951,"dataGaName":952,"dataGaLocation":612},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":954,"login":955,"suggestions":962},"Close",{"text":956,"link":957},"To search repositories and projects, login to",{"text":958,"config":959},"gitlab.com",{"href":626,"dataGaName":960,"dataGaLocation":961},"search login","search",{"text":963,"default":964},"Suggestions",[965,967,971,973,977,981],{"text":643,"config":966},{"href":648,"dataGaName":643,"dataGaLocation":961},{"text":968,"config":969},"Code Suggestions (AI)",{"href":970,"dataGaName":968,"dataGaLocation":961},"/solutions/code-suggestions/",{"text":602,"config":972},{"href":680,"dataGaName":602,"dataGaLocation":961},{"text":974,"config":975},"GitLab on AWS",{"href":976,"dataGaName":974,"dataGaLocation":961},"/partners/technology-partners/aws/",{"text":978,"config":979},"GitLab on Google Cloud",{"href":980,"dataGaName":978,"dataGaLocation":961},"/partners/technology-partners/google-cloud-platform/",{"text":982,"config":983},"Why GitLab?",{"href":656,"dataGaName":982,"dataGaLocation":961},{"freeTrial":985,"mobileIcon":990,"desktopIcon":995,"secondaryButton":998},{"text":986,"config":987},"Start free trial",{"href":988,"dataGaName":617,"dataGaLocation":989},"https://gitlab.com/-/trials/new/","nav",{"altText":991,"config":992},"Gitlab Icon",{"src":993,"dataGaName":994,"dataGaLocation":989},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":991,"config":996},{"src":997,"dataGaName":994,"dataGaLocation":989},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":999,"config":1000},"Get Started",{"href":1001,"dataGaName":1002,"dataGaLocation":989},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":1004,"mobileIcon":1008,"desktopIcon":1010},{"text":1005,"config":1006},"Learn more about GitLab Duo",{"href":648,"dataGaName":1007,"dataGaLocation":989},"gitlab duo",{"altText":991,"config":1009},{"src":993,"dataGaName":994,"dataGaLocation":989},{"altText":991,"config":1011},{"src":997,"dataGaName":994,"dataGaLocation":989},{"button":1013,"mobileIcon":1018,"desktopIcon":1020},{"text":1014,"config":1015},"/switch",{"href":1016,"dataGaName":1017,"dataGaLocation":989},"#contact","switch",{"altText":991,"config":1019},{"src":993,"dataGaName":994,"dataGaLocation":989},{"altText":991,"config":1021},{"src":1022,"dataGaName":994,"dataGaLocation":989},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":1024,"mobileIcon":1029,"desktopIcon":1031},{"text":1025,"config":1026},"Back to pricing",{"href":760,"dataGaName":1027,"dataGaLocation":989,"icon":1028},"back to pricing","GoBack",{"altText":991,"config":1030},{"src":993,"dataGaName":994,"dataGaLocation":989},{"altText":991,"config":1032},{"src":997,"dataGaName":994,"dataGaLocation":989},{"title":1034,"titleMobile":1035,"button":1036,"config":1041},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":654,"config":1037},{"href":1038,"dataGaName":1039,"dataGaLocation":1040},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":1042,"disabled":595},"release",{"data":1044},{"text":1045,"source":1046,"edit":1052,"contribute":1057,"config":1062,"items":1067,"minimal":1277},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":1047,"config":1048},"View page source",{"href":1049,"dataGaName":1050,"dataGaLocation":1051},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":1053,"config":1054},"Edit this page",{"href":1055,"dataGaName":1056,"dataGaLocation":1051},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":1058,"config":1059},"Please contribute",{"href":1060,"dataGaName":1061,"dataGaLocation":1051},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":1063,"facebook":1064,"youtube":1065,"linkedin":1066},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[1068,1115,1169,1213,1245],{"title":758,"links":1069,"subMenu":1084},[1070,1074,1079],{"text":1071,"config":1072},"View plans",{"href":760,"dataGaName":1073,"dataGaLocation":1051},"view plans",{"text":1075,"config":1076},"Why Premium?",{"href":1077,"dataGaName":1078,"dataGaLocation":1051},"/pricing/premium/","why premium",{"text":1080,"config":1081},"Why Ultimate?",{"href":1082,"dataGaName":1083,"dataGaLocation":1051},"/pricing/ultimate/","why ultimate",[1085],{"title":1086,"links":1087},"Contact Us",[1088,1091,1093,1095,1100,1105,1110],{"text":1089,"config":1090},"Contact sales",{"href":941,"dataGaName":622,"dataGaLocation":1051},{"text":944,"config":1092},{"href":946,"dataGaName":947,"dataGaLocation":1051},{"text":949,"config":1094},{"href":951,"dataGaName":952,"dataGaLocation":1051},{"text":1096,"config":1097},"Status",{"href":1098,"dataGaName":1099,"dataGaLocation":1051},"https://status.gitlab.com/","status",{"text":1101,"config":1102},"Terms of use",{"href":1103,"dataGaName":1104,"dataGaLocation":1051},"/terms/","terms of use",{"text":1106,"config":1107},"Privacy statement",{"href":1108,"dataGaName":1109,"dataGaLocation":1051},"/privacy/","privacy statement",{"text":1111,"config":1112},"Cookie preferences",{"dataGaName":1113,"dataGaLocation":1051,"id":1114,"isOneTrustButton":590},"cookie preferences","ot-sdk-btn",{"title":659,"links":1116,"subMenu":1125},[1117,1121],{"text":1118,"config":1119},"DevSecOps platform",{"href":641,"dataGaName":1120,"dataGaLocation":1051},"devsecops platform",{"text":1122,"config":1123},"AI-Assisted Development",{"href":648,"dataGaName":1124,"dataGaLocation":1051},"ai-assisted development",[1126],{"title":1127,"links":1128},"Topics",[1129,1134,1139,1144,1149,1154,1159,1164],{"text":1130,"config":1131},"CICD",{"href":1132,"dataGaName":1133,"dataGaLocation":1051},"/topics/ci-cd/","cicd",{"text":1135,"config":1136},"GitOps",{"href":1137,"dataGaName":1138,"dataGaLocation":1051},"/topics/gitops/","gitops",{"text":1140,"config":1141},"DevOps",{"href":1142,"dataGaName":1143,"dataGaLocation":1051},"/topics/devops/","devops",{"text":1145,"config":1146},"Version Control",{"href":1147,"dataGaName":1148,"dataGaLocation":1051},"/topics/version-control/","version control",{"text":1150,"config":1151},"DevSecOps",{"href":1152,"dataGaName":1153,"dataGaLocation":1051},"/topics/devsecops/","devsecops",{"text":1155,"config":1156},"Cloud Native",{"href":1157,"dataGaName":1158,"dataGaLocation":1051},"/topics/cloud-native/","cloud native",{"text":1160,"config":1161},"AI for Coding",{"href":1162,"dataGaName":1163,"dataGaLocation":1051},"/topics/devops/ai-for-coding/","ai for coding",{"text":1165,"config":1166},"Agentic AI",{"href":1167,"dataGaName":1168,"dataGaLocation":1051},"/topics/agentic-ai/","agentic ai",{"title":1170,"links":1171},"Solutions",[1172,1174,1176,1181,1185,1188,1192,1195,1197,1200,1203,1208],{"text":702,"config":1173},{"href":697,"dataGaName":702,"dataGaLocation":1051},{"text":691,"config":1175},{"href":675,"dataGaName":676,"dataGaLocation":1051},{"text":1177,"config":1178},"Agile development",{"href":1179,"dataGaName":1180,"dataGaLocation":1051},"/solutions/agile-delivery/","agile delivery",{"text":1182,"config":1183},"SCM",{"href":687,"dataGaName":1184,"dataGaLocation":1051},"source code management",{"text":1130,"config":1186},{"href":680,"dataGaName":1187,"dataGaLocation":1051},"continuous integration & delivery",{"text":1189,"config":1190},"Value stream management",{"href":730,"dataGaName":1191,"dataGaLocation":1051},"value stream management",{"text":1135,"config":1193},{"href":1194,"dataGaName":1138,"dataGaLocation":1051},"/solutions/gitops/",{"text":740,"config":1196},{"href":743,"dataGaName":744,"dataGaLocation":1051},{"text":1198,"config":1199},"Small business",{"href":749,"dataGaName":750,"dataGaLocation":1051},{"text":1201,"config":1202},"Public sector",{"href":755,"dataGaName":756,"dataGaLocation":1051},{"text":1204,"config":1205},"Education",{"href":1206,"dataGaName":1207,"dataGaLocation":1051},"/solutions/education/","education",{"text":1209,"config":1210},"Financial services",{"href":1211,"dataGaName":1212,"dataGaLocation":1051},"/solutions/finance/","financial services",{"title":763,"links":1214},[1215,1217,1219,1221,1224,1226,1229,1231,1233,1235,1237,1239,1241,1243],{"text":775,"config":1216},{"href":777,"dataGaName":778,"dataGaLocation":1051},{"text":780,"config":1218},{"href":782,"dataGaName":783,"dataGaLocation":1051},{"text":785,"config":1220},{"href":787,"dataGaName":788,"dataGaLocation":1051},{"text":790,"config":1222},{"href":792,"dataGaName":1223,"dataGaLocation":1051},"docs",{"text":813,"config":1225},{"href":815,"dataGaName":816,"dataGaLocation":1051},{"text":1227,"config":1228},"What's new",{"href":873,"dataGaName":874,"dataGaLocation":1051},{"text":808,"config":1230},{"href":810,"dataGaName":811,"dataGaLocation":1051},{"text":827,"config":1232},{"href":829,"dataGaName":830,"dataGaLocation":1051},{"text":835,"config":1234},{"href":837,"dataGaName":838,"dataGaLocation":1051},{"text":840,"config":1236},{"href":842,"dataGaName":843,"dataGaLocation":1051},{"text":845,"config":1238},{"href":847,"dataGaName":848,"dataGaLocation":1051},{"text":850,"config":1240},{"href":852,"dataGaName":853,"dataGaLocation":1051},{"text":855,"config":1242},{"href":857,"dataGaName":858,"dataGaLocation":1051},{"text":860,"config":1244},{"href":862,"dataGaName":863,"dataGaLocation":1051},{"title":876,"links":1246},[1247,1249,1251,1253,1255,1257,1261,1266,1268,1270,1272],{"text":884,"config":1248},{"href":886,"dataGaName":878,"dataGaLocation":1051},{"text":889,"config":1250},{"href":891,"dataGaName":892,"dataGaLocation":1051},{"text":897,"config":1252},{"href":899,"dataGaName":900,"dataGaLocation":1051},{"text":902,"config":1254},{"href":904,"dataGaName":905,"dataGaLocation":1051},{"text":907,"config":1256},{"href":909,"dataGaName":910,"dataGaLocation":1051},{"text":1258,"config":1259},"Sustainability",{"href":1260,"dataGaName":1258,"dataGaLocation":1051},"/sustainability/",{"text":1262,"config":1263},"Diversity, inclusion and belonging (DIB)",{"href":1264,"dataGaName":1265,"dataGaLocation":1051},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":912,"config":1267},{"href":914,"dataGaName":915,"dataGaLocation":1051},{"text":922,"config":1269},{"href":924,"dataGaName":925,"dataGaLocation":1051},{"text":927,"config":1271},{"href":929,"dataGaName":930,"dataGaLocation":1051},{"text":1273,"config":1274},"Modern Slavery Transparency Statement",{"href":1275,"dataGaName":1276,"dataGaLocation":1051},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1278},[1279,1282,1285],{"text":1280,"config":1281},"Terms",{"href":1103,"dataGaName":1104,"dataGaLocation":1051},{"text":1283,"config":1284},"Cookies",{"dataGaName":1113,"dataGaLocation":1051,"id":1114,"isOneTrustButton":590},{"text":1286,"config":1287},"Privacy",{"href":1108,"dataGaName":1109,"dataGaLocation":1051},[1289],{"id":1290,"title":7,"body":589,"config":1291,"content":1293,"description":589,"extension":1297,"meta":1298,"navigation":590,"path":1299,"seo":1300,"stem":1301,"__hash__":1302},"blogAuthors/en-us/blog/authors/madou-coulibaly.yml",{"template":1292},"BlogAuthor",{"name":7,"config":1294},{"headshot":1295,"ctfId":1296},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679848/Blog/Author%20Headshots/madou-headshot.jpg","madou","yml",{},"/en-us/blog/authors/madou-coulibaly",{},"en-us/blog/authors/madou-coulibaly","B1ujB-U-HU1uDfrGilJbCxfUUm6TJB_H1DRGY_p32OA",[1304,1313,1321],{"title":1305,"description":1306,"heroImage":1307,"category":585,"date":1308,"authors":1309,"slug":1312,"externalUrl":589},"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",[1310,1311],"Mathias Ewald","Martin Paloncy, Edgeless Systems","confidential-ai-for-gitlab-self-hosted",{"title":1314,"description":1315,"heroImage":1316,"category":585,"date":1317,"authors":1318,"slug":1320,"externalUrl":589},"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",[1319],"Lysanne Pinto","green-devops-carbon-measurement-cicd-pipeline",{"title":1322,"description":1323,"heroImage":1324,"category":585,"date":1325,"authors":1326,"slug":1328,"externalUrl":589},"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",[1327],"Paul Meresanu","how-to-build-ci-cd-observability-at-scale",{"promotions":1330},[1331,1345,1357,1369],{"id":1332,"categories":1333,"header":1335,"text":1336,"button":1337,"image":1342},"ai-modernization",[1334],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":1338,"config":1339},"Get your AI maturity score",{"href":1340,"dataGaName":1341,"dataGaLocation":816},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1343},{"src":1344},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1346,"categories":1347,"header":1349,"text":1336,"button":1350,"image":1354},"devops-modernization",[1348,1153],"product","Are you just managing tools or shipping innovation?",{"text":1351,"config":1352},"Get your DevOps maturity score",{"href":1353,"dataGaName":1341,"dataGaLocation":816},"/assessments/devops-modernization-assessment/",{"config":1355},{"src":1356},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1358,"categories":1359,"header":1361,"text":1336,"button":1362,"image":1366},"security-modernization",[1360],"security","Are you trading speed for security?",{"text":1363,"config":1364},"Get your security maturity score",{"href":1365,"dataGaName":1341,"dataGaLocation":816},"/assessments/security-modernization-assessment/",{"config":1367},{"src":1368},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1370,"paths":1371,"header":1374,"text":1375,"button":1376,"image":1381},"github-azure-migration",[1372,1373],"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":1377,"config":1378},"See how GitLab compares to GitHub",{"href":1379,"dataGaName":1380,"dataGaLocation":816},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1382},{"src":1356},{"header":1384,"blurb":1385,"button":1386,"secondaryButton":1391},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1387,"config":1388},"Get your free trial",{"href":1389,"dataGaName":617,"dataGaLocation":1390},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":1089,"config":1392},{"href":941,"dataGaName":622,"dataGaLocation":1390},1786803765184]