[{"data":1,"prerenderedAt":1159},["ShallowReactive",2],{"/blog/deploy-a-server-using-go-with-gitlab-google-cloud":3,"navigation-en-us":369,"banner-en-us":797,"footer-en-us":807,"blog-post-authors-en-us-Claire Champernowne|Noah Ing":1050,"blog-related-posts-en-us-deploy-a-server-using-go-with-gitlab-google-cloud":1077,"blog-promotions-en-us":1096,"next-steps-en-us":1149},{"id":4,"title":5,"authors":6,"body":9,"category":345,"date":346,"description":347,"extension":348,"externalUrl":349,"faq":349,"featured":350,"heroImage":351,"meta":352,"navigation":353,"path":354,"seo":355,"slug":359,"stem":360,"tags":361,"template":367,"updatedDate":349,"__hash__":368},"blogPosts/en-us/blog/deploy-a-server-using-go-with-gitlab-google-cloud.md","Deploy a server using Go with GitLab + Google Cloud",[7,8],"Claire Champernowne","Noah Ing",{"type":10,"value":11,"toc":326},"minimark",[12,16,21,47,51,66,70,75,82,89,96,109,119,123,130,136,140,146,150,156,160,166,169,193,197,203,206,212,216,223,229,236,242,246,256,262,268,274,280,290,294,302,317],[13,14,15],"p",{},"Deploying an application to the cloud often requires assistance from production or DevOps engineers. GitLab's Google Cloud integration empowers developers to handle deployments independently. In this tutorial, you'll learn how to deploy a server to Google Cloud in less than 10 minutes using Go. Whether you’re a solo developer or part of a large team, this setup allows you to deploy applications efficiently.",[17,18,20],"h2",{"id":19},"youll-learn-how-to","You'll learn how to:",[22,23,24,28,35,38,41,44],"ol",{},[25,26,27],"li",{},"Create a new project in GitLab",[25,29,30,31],{},"Create a Go server utilizing ",[32,33,34],"code",{},"main.go",[25,36,37],{},"Use the Google Cloud integration to create a Service account",[25,39,40],{},"Use the Google Cloud integration to create Cloud Run via a merge request",[25,42,43],{},"Access your newly deployed Go server",[25,45,46],{},"Clean up your environment",[17,48,50],{"id":49},"prerequisites","Prerequisites",[52,53,54,57,60,63],"ul",{},[25,55,56],{},"Owner access on a Google Cloud Platform project",[25,58,59],{},"Working knowledge of Golang",[25,61,62],{},"Working knowledge of GitLab CI",[25,64,65],{},"10 minutes",[17,67,69],{"id":68},"step-by-step-golang-server-deployment-to-google-cloud","Step-by-step Golang server deployment to Google Cloud",[71,72,74],"h3",{"id":73},"_1-create-a-new-blank-project-in-gitlab","1. Create a new blank project in GitLab.",[13,76,77,78,81],{},"We decided to call our project ",[32,79,80],{},"golang-cloud-run"," for simplicity.",[13,83,84],{},[85,86],"img",{"alt":87,"src":88},"Create a new blank project in GitLab","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image9_aHR0cHM6_1750098035249.png",[71,90,92,93,95],{"id":91},"_2-create-a-server-utilizing-this-maingo-demo","2. Create a server utilizing this ",[32,94,34],{}," demo.",[13,97,98,99,101,102,108],{},"Find the ",[32,100,34],{}," demo ",[103,104,107],"a",{"href":105,"rel":106},"https://gitlab.com/demos/applications/golang-cloud-run",[],"here",".",[110,111,117],"pre",{"className":112,"code":114,"language":115,"meta":116},[113],"language-text","// Sample run-helloworld is a minimal Cloud Run service.\npackage main\n\nimport (\n    \"fmt\"\n    \"log\"\n    \"net/http\"\n    \"os\"\n)\n\nfunc main() {\n    log.Print(\"starting server...\")\n    http.HandleFunc(\"/\", handler)\n\n    // Determine port for HTTP service.\n    port := os.Getenv(\"PORT\")\n    if port == \"\" {\n        port = \"8080\"\n        log.Printf(\"defaulting to port %s\", port)\n    }\n\n    // Start HTTP server.\n    log.Printf(\"listening on port %s\", port)\n    if err := http.ListenAndServe(\":\"+port, nil); err != nil {\n        log.Fatal(err)\n    }\n}\n\nfunc handler(w http.ResponseWriter, r *http.Request) {\n    name := os.Getenv(\"NAME\")\n    if name == \"\" {\n        name = \"World\"\n    }\n    fmt.Fprintf(w, \"Hello %s!\\n\", name)\n}\n","text","",[32,118,114],{"__ignoreMap":116},[71,120,122],{"id":121},"_3-use-the-google-cloud-integration-to-create-a-service-account","3. Use the Google Cloud integration to create a Service account.",[13,124,125,126,108],{},"Navigate to ",[127,128,129],"strong",{},"Operate > Google Cloud > Create Service account",[13,131,132],{},[85,133],{"alt":134,"src":135},"Golang tutorial - image 2","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098036/Blog/Content%20Images/Blog/Content%20Images/image11_aHR0cHM6_1750098035250.png",[71,137,139],{"id":138},"_4-configure-the-region-you-would-like-the-cloud-run-instance-deployed-to","4. Configure the region you would like the Cloud Run instance deployed to.",[13,141,142],{},[85,143],{"alt":144,"src":145},"Golang tutorial - image10","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image10_aHR0cHM6_1750098035252.png",[71,147,149],{"id":148},"_5-use-the-google-cloud-integration-to-configure-cloud-run-via-merge-request","5. Use the Google Cloud integration to configure Cloud Run via Merge Request.",[13,151,152],{},[85,153],{"alt":154,"src":155},"Golang tutorial - image4","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image4_aHR0cHM6_1750098035254.png",[71,157,159],{"id":158},"_6-this-will-open-a-merge-request-immediately-merge-the-mr","6. This will open a merge request. Immediately merge the MR.",[13,161,162],{},[85,163],{"alt":164,"src":165},"Golang tutorial - image6","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098036/Blog/Content%20Images/Blog/Content%20Images/image6_aHR0cHM6_1750098035257.png",[13,167,168],{},"This merge request adds a CI/CD deployment job to your pipeline definition. In our case, this is also creating a pipeline definition, as we didn’t have one before.",[13,170,171,174,175,178,179,178,182,178,185,188,189],{},[127,172,173],{},"Note:"," The CI/CD variables ",[32,176,177],{},"GCP_PROJECT_ID",", ",[32,180,181],{},"GCP_REGION",[32,183,184],{},"GCP_SERVICE_ACCOUNT",[32,186,187],{},"GCP_SERVICE_ACCOUNT_KEY"," will all be automatically populated from the previous steps.\n",[85,190],{"alt":191,"src":192},"Golang tutorial - image7","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image7_aHR0cHM6_1750098035259.png",[71,194,196],{"id":195},"_7-voila-check-your-pipeline-and-you-will-see-you-have-successfully-deployed-to-google-cloud-run-utilizing-gitlab-ci","7. Voila! Check your pipeline and you will see you have successfully deployed to Google Cloud Run utilizing GitLab CI.",[13,198,199],{},[85,200],{"alt":201,"src":202},"Golang tutorial - image2","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image2_aHR0cHM6_1750098035261.png",[204,205],"br",{},[13,207,208],{},[85,209],{"alt":210,"src":211},"Golang tutorial - image3","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image3_aHR0cHM6_1750098035262.png",[17,213,215],{"id":214},"_8-click-the-service-url-to-view-your-newly-deployed-server","8. Click the Service URL to view your newly deployed server.",[13,217,218,219,222],{},"Alternatively, you can navigate to ",[127,220,221],{},"Operate > Environments"," to see a list of deployments for your environments.",[13,224,225],{},[85,226],{"alt":227,"src":228},"Golang tutorial - image5","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image5_aHR0cHM6_1750098035264.png",[13,230,231,232,235],{},"By clicking on the environment called ",[127,233,234],{},"main",", you’ll be able to view a complete list of deployments specific to that environment.",[13,237,238],{},[85,239],{"alt":240,"src":241},"Golang tutorial - image8","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098035/Blog/Content%20Images/Blog/Content%20Images/image8_aHR0cHM6_1750098035265.png",[17,243,245],{"id":244},"next-steps","Next steps",[13,247,248,249,251,252,255],{},"To get started with developing your Go application, try adding another endpoint. For instance, in your ",[32,250,34],{}," file, you can add a ",[32,253,254],{},"/bye"," endpoint as shown below (don’t forget to register the new handler function in main!):",[110,257,260],{"className":258,"code":259,"language":115,"meta":116},[113],"func main() {\n    log.Print(\"starting server...\")\n\n    http.HandleFunc(\"/\", handler)\n    http.HandleFunc(\"/bye\", byeHandler)\n",[32,261,259],{"__ignoreMap":116},[110,263,266],{"className":264,"code":265,"language":115,"meta":116},[113],"func byeHandler(w http.ResponseWriter, r *http.Request) {\n    name := os.Getenv(\"NAME\")\n    if name == \"\" {\n        name = \"World\"\n    }\n    fmt.Fprintf(w, \"Bye %s!\\n\", name)\n}\n",[32,267,265],{"__ignoreMap":116},[13,269,270,271,273],{},"Your ",[32,272,34],{}," file should now look something like this:",[110,275,278],{"className":276,"code":277,"language":115,"meta":116},[113],"// Sample run-helloworld is a minimal Cloud Run service.\npackage main\n\nimport (\n    \"fmt\"\n    \"log\"\n    \"net/http\"\n    \"os\"\n)\n\nfunc main() {\n    log.Print(\"starting server...\")\n\n    http.HandleFunc(\"/\", handler)\n\n    http.HandleFunc(\"/bye\", byeHandler)\n\n    // Determine port for HTTP service.\n    port := os.Getenv(\"PORT\")\n    if port == \"\" {\n        port = \"8080\"\n        log.Printf(\"defaulting to port %s\", port)\n    }\n\n    // Start HTTP server.\n    log.Printf(\"listening on port %s\", port)\n    if err := http.ListenAndServe(\":\"+port, nil); err != nil {\n        log.Fatal(err)\n    }\n}\n\nfunc handler(w http.ResponseWriter, r *http.Request) {\n    name := os.Getenv(\"NAME\")\n    if name == \"\" {\n        name = \"World\"\n    }\n    fmt.Fprintf(w, \"Hello %s!\\n\", name)\n}\n\nfunc byeHandler(w http.ResponseWriter, r *http.Request) {\n    name := os.Getenv(\"NAME\")\n    if name == \"\" {\n        name = \"World\"\n    }\n    fmt.Fprintf(w, \"Bye %s!\\n\", name)\n}\n",[32,279,277],{"__ignoreMap":116},[13,281,282,283,286,287,289],{},"Push the changes to the repo, and watch the ",[32,284,285],{},"deploy-to-cloud-run job"," deploy the updates. Once it’s complete, go back to the Service URL and navigate to the ",[32,288,254],{}," endpoint to see the new functionality in action.",[17,291,293],{"id":292},"clean-up-the-environment","Clean up the environment",[13,295,296,297,108],{},"To prevent incurring charges on your Google Cloud account for the resources used in this tutorial, you can either delete the specific resources or delete the entire Google Cloud project. For detailed instructions, refer to the ",[103,298,301],{"href":299,"rel":300},"https://docs.gitlab.com/tutorials/create_and_deploy_web_service_with_google_cloud_run_component/#clean-up",[],"cleanup guide",[303,304,305],"blockquote",{},[13,306,307,308,312,313,108],{},"To go further with Go, learn how to ",[103,309,311],{"href":310},"/blog/compose-readers-and-writers-in-golang-applications/","compose readers and writers in Go applications",". Or, if Python is your language, learn how to ",[103,314,316],{"href":315},"/blog/fast-python-flask-server-deployment-with-gitlab-google-cloud/","deploy a server to Google Cloud with Flask",[13,318,319,320,325],{},"Discover more tutorials like this in our ",[103,321,324],{"href":322,"rel":323},"https://about.gitlab.com/blog/tags/solutions-architecture/",[],"Solutions Architecture"," area.",{"title":116,"searchDepth":327,"depth":327,"links":328},2,[329,330,331,342,343,344],{"id":19,"depth":327,"text":20},{"id":49,"depth":327,"text":50},{"id":68,"depth":327,"text":69,"children":332},[333,335,337,338,339,340,341],{"id":73,"depth":334,"text":74},3,{"id":91,"depth":334,"text":336},"2. Create a server utilizing this main.go demo.",{"id":121,"depth":334,"text":122},{"id":138,"depth":334,"text":139},{"id":148,"depth":334,"text":149},{"id":158,"depth":334,"text":159},{"id":195,"depth":334,"text":196},{"id":214,"depth":327,"text":215},{"id":244,"depth":327,"text":245},{"id":292,"depth":327,"text":293},"product","2025-01-28","This tutorial shows how to use GitLab’s Google Cloud integration to deploy a Golang server in less than 10 minutes, helping developers become more independent and efficient.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750098028/Blog/Hero%20Images/Blog/Hero%20Images/blog-image-template-1800x945_fJKX41PJHKCfSOWw4xQxm_1750098028126.png",{},true,"/en-us/blog/deploy-a-server-using-go-with-gitlab-google-cloud",{"title":5,"description":347,"ogTitle":5,"ogDescription":347,"noIndex":350,"ogImage":351,"ogUrl":356,"ogSiteName":357,"ogType":358,"canonicalUrls":356},"https://about.gitlab.com/blog/deploy-a-server-using-go-with-gitlab-google-cloud","https://about.gitlab.com","article","deploy-a-server-using-go-with-gitlab-google-cloud","en-us/blog/deploy-a-server-using-go-with-gitlab-google-cloud",[362,363,364,365,345,366],"DevSecOps","DevSecOps platform","tutorial","solutions architecture","features","BlogPost","WtGVP7rK4OZOL4Q6AcTdI8_j9ejZZB5DE35m42Cb8S0",{"logo":370,"freeTrial":375,"sales":380,"login":385,"items":390,"search":717,"minimal":748,"duo":767,"switchNav":776,"pricingDeployment":787},{"config":371},{"href":372,"dataGaName":373,"dataGaLocation":374},"/","gitlab logo","header",{"text":376,"config":377},"Get free trial",{"href":378,"dataGaName":379,"dataGaLocation":374},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":381,"config":382},"Request a demo",{"href":383,"dataGaName":384,"dataGaLocation":374},"/sales/?contact-topic=request-demo","sales",{"text":386,"config":387},"Sign in",{"href":388,"dataGaName":389,"dataGaLocation":374},"https://gitlab.com/users/sign_in/","sign in",[391,420,520,525,639,695],{"text":392,"config":393,"menu":395},"Platform",{"dataNavLevelOne":394},"platform",{"type":396,"columns":397},"cards",[398,404,412],{"title":392,"description":399,"link":400},"The intelligent orchestration platform for DevSecOps",{"text":401,"config":402},"Explore our Platform",{"href":403,"dataGaName":394,"dataGaLocation":374},"/platform/",{"title":405,"description":406,"link":407},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":408,"config":409},"Meet GitLab Duo",{"href":410,"dataGaName":411,"dataGaLocation":374},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":413,"description":414,"link":415},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":416,"config":417},"Learn more",{"href":418,"dataGaName":419,"dataGaLocation":374},"/why-gitlab/","why gitlab",{"text":421,"left":353,"config":422,"menu":424},"Product",{"dataNavLevelOne":423},"solutions",{"type":425,"link":426,"columns":430,"feature":499},"lists",{"text":427,"config":428},"View all Solutions",{"href":429,"dataGaName":423,"dataGaLocation":374},"/solutions/",[431,455,478],{"title":432,"description":433,"link":434,"items":439},"Automation","CI/CD and automation to accelerate deployment",{"config":435},{"icon":436,"href":437,"dataGaName":438,"dataGaLocation":374},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[440,444,447,451],{"text":441,"config":442},"CI/CD",{"href":443,"dataGaLocation":374,"dataGaName":441},"/solutions/continuous-integration/",{"text":405,"config":445},{"href":410,"dataGaLocation":374,"dataGaName":446},"gitlab duo agent platform - product menu",{"text":448,"config":449},"Source Code Management",{"href":450,"dataGaLocation":374,"dataGaName":448},"/solutions/source-code-management/",{"text":452,"config":453},"Automated Software Delivery",{"href":437,"dataGaLocation":374,"dataGaName":454},"Automated software delivery",{"title":456,"description":457,"link":458,"items":463},"Security","Deliver code faster without compromising security",{"config":459},{"href":460,"dataGaName":461,"dataGaLocation":374,"icon":462},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[464,468,473],{"text":465,"config":466},"Application Security Testing",{"href":460,"dataGaName":467,"dataGaLocation":374},"Application security testing",{"text":469,"config":470},"Software Supply Chain Security",{"href":471,"dataGaLocation":374,"dataGaName":472},"/solutions/supply-chain/","Software supply chain security",{"text":474,"config":475},"Software Compliance",{"href":476,"dataGaName":477,"dataGaLocation":374},"/solutions/software-compliance/","software compliance",{"title":479,"link":480,"items":485},"Measurement",{"config":481},{"icon":482,"href":483,"dataGaName":484,"dataGaLocation":374},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[486,490,494],{"text":487,"config":488},"Visibility & Measurement",{"href":483,"dataGaLocation":374,"dataGaName":489},"Visibility and Measurement",{"text":491,"config":492},"Value Stream Management",{"href":493,"dataGaLocation":374,"dataGaName":491},"/solutions/value-stream-management/",{"text":495,"config":496},"Analytics & Insights",{"href":497,"dataGaLocation":374,"dataGaName":498},"/solutions/analytics-and-insights/","Analytics and insights",{"title":500,"type":425,"items":501},"GitLab for",[502,508,514],{"text":503,"config":504},"Enterprise",{"icon":505,"href":506,"dataGaLocation":374,"dataGaName":507},"Building","/enterprise/","enterprise",{"text":509,"config":510},"Small Business",{"icon":511,"href":512,"dataGaLocation":374,"dataGaName":513},"Work","/small-business/","small business",{"text":515,"config":516},"Public Sector",{"icon":517,"href":518,"dataGaLocation":374,"dataGaName":519},"Organization","/solutions/public-sector/","public sector",{"text":521,"config":522},"Pricing",{"href":523,"dataGaName":524,"dataGaLocation":374,"dataNavLevelOne":524},"/pricing/","pricing",{"text":526,"config":527,"menu":529},"Resources",{"dataNavLevelOne":528},"resources",{"type":425,"link":530,"columns":534,"feature":628},{"text":531,"config":532},"View all resources",{"href":533,"dataGaName":528,"dataGaLocation":374},"/resources/",[535,568,595],{"title":536,"items":537},"Getting started",[538,543,548,553,558,563],{"text":539,"config":540},"Install",{"href":541,"dataGaName":542,"dataGaLocation":374},"/install/","install",{"text":544,"config":545},"Quick start guides",{"href":546,"dataGaName":547,"dataGaLocation":374},"/get-started/","quick setup checklists",{"text":549,"config":550},"Learn",{"href":551,"dataGaLocation":374,"dataGaName":552},"https://university.gitlab.com/","learn",{"text":554,"config":555},"Product documentation",{"href":556,"dataGaName":557,"dataGaLocation":374},"https://docs.gitlab.com/","product documentation",{"text":559,"config":560},"Best practice videos",{"href":561,"dataGaName":562,"dataGaLocation":374},"/getting-started-videos/","best practice videos",{"text":564,"config":565},"Integrations",{"href":566,"dataGaName":567,"dataGaLocation":374},"/integrations/","integrations",{"title":569,"items":570},"Discover",[571,576,581,586,590],{"text":572,"config":573},"Customer success stories",{"href":574,"dataGaName":575,"dataGaLocation":374},"/customers/","customer success stories",{"text":577,"config":578},"Blog",{"href":579,"dataGaName":580,"dataGaLocation":374},"/blog/","blog",{"text":582,"config":583},"Demo Hub",{"href":584,"dataGaName":585,"dataGaLocation":374},"/demo-hub/","demo hub",{"text":587,"config":588},"The Source",{"href":589,"dataGaName":580,"dataGaLocation":374},"/the-source/",{"text":591,"config":592},"Remote",{"href":593,"dataGaName":594,"dataGaLocation":374},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":596,"items":597},"Connect",[598,603,608,613,618,623],{"text":599,"config":600},"GitLab Services",{"href":601,"dataGaName":602,"dataGaLocation":374},"/services/","services",{"text":604,"config":605},"Contribute",{"href":606,"dataGaName":607,"dataGaLocation":374},"https://contributors.gitlab.com","contribute",{"text":609,"config":610},"Community",{"href":611,"dataGaName":612,"dataGaLocation":374},"/community/","community",{"text":614,"config":615},"Forum",{"href":616,"dataGaName":617,"dataGaLocation":374},"https://forum.gitlab.com/","forum",{"text":619,"config":620},"Events",{"href":621,"dataGaName":622,"dataGaLocation":374},"/events/","events",{"text":624,"config":625},"Partners",{"href":626,"dataGaName":627,"dataGaLocation":374},"/partners/","partners",{"config":629,"title":632,"text":633,"link":634},{"background":630,"textColor":631},"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":635,"config":636},"Read the latest",{"href":637,"dataGaName":638,"dataGaLocation":374},"/whats-new/","whats new",{"text":640,"config":641,"menu":643},"Company",{"dataNavLevelOne":642},"company",{"type":425,"columns":644},[645],{"items":646},[647,652,658,660,665,670,675,680,685,690],{"text":648,"config":649},"About",{"href":650,"dataGaName":651,"dataGaLocation":374},"/company/","about",{"text":653,"config":654,"footerGa":657},"Jobs",{"href":655,"dataGaName":656,"dataGaLocation":374},"/jobs/","jobs",{"dataGaName":656},{"text":619,"config":659},{"href":621,"dataGaName":622,"dataGaLocation":374},{"text":661,"config":662},"Leadership",{"href":663,"dataGaName":664,"dataGaLocation":374},"/company/team/e-group/","leadership",{"text":666,"config":667},"Handbook",{"href":668,"dataGaName":669,"dataGaLocation":374},"https://handbook.gitlab.com/","handbook",{"text":671,"config":672},"Investor relations",{"href":673,"dataGaName":674,"dataGaLocation":374},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":676,"config":677},"Trust Center",{"href":678,"dataGaName":679,"dataGaLocation":374},"/security/","trust center",{"text":681,"config":682},"AI Transparency Center",{"href":683,"dataGaName":684,"dataGaLocation":374},"/ai-transparency-center/","ai transparency center",{"text":686,"config":687},"Newsletter",{"href":688,"dataGaName":689,"dataGaLocation":374},"/company/contact/#contact-forms","newsletter",{"text":691,"config":692},"Press",{"href":693,"dataGaName":694,"dataGaLocation":374},"/press/","press",{"text":696,"config":697,"menu":698},"Contact us",{"dataNavLevelOne":642},{"type":425,"columns":699},[700],{"items":701},[702,707,712],{"text":703,"config":704},"Talk to sales",{"href":705,"dataGaName":706,"dataGaLocation":374},"/sales/","talk to sales",{"text":708,"config":709},"Support portal",{"href":710,"dataGaName":711,"dataGaLocation":374},"https://support.gitlab.com/hc/en-us","support portal",{"text":713,"config":714},"Customer portal",{"href":715,"dataGaName":716,"dataGaLocation":374},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":718,"login":719,"suggestions":726},"Close",{"text":720,"link":721},"To search repositories and projects, login to",{"text":722,"config":723},"gitlab.com",{"href":388,"dataGaName":724,"dataGaLocation":725},"search login","search",{"text":727,"default":728},"Suggestions",[729,731,735,737,741,745],{"text":405,"config":730},{"href":410,"dataGaName":405,"dataGaLocation":725},{"text":732,"config":733},"Code Suggestions (AI)",{"href":734,"dataGaName":732,"dataGaLocation":725},"/solutions/code-suggestions/",{"text":441,"config":736},{"href":443,"dataGaName":441,"dataGaLocation":725},{"text":738,"config":739},"GitLab on AWS",{"href":740,"dataGaName":738,"dataGaLocation":725},"/partners/technology-partners/aws/",{"text":742,"config":743},"GitLab on Google Cloud",{"href":744,"dataGaName":742,"dataGaLocation":725},"/partners/technology-partners/google-cloud-platform/",{"text":746,"config":747},"Why GitLab?",{"href":418,"dataGaName":746,"dataGaLocation":725},{"freeTrial":749,"mobileIcon":754,"desktopIcon":759,"secondaryButton":762},{"text":750,"config":751},"Start free trial",{"href":752,"dataGaName":379,"dataGaLocation":753},"https://gitlab.com/-/trials/new/","nav",{"altText":755,"config":756},"Gitlab Icon",{"src":757,"dataGaName":758,"dataGaLocation":753},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":755,"config":760},{"src":761,"dataGaName":758,"dataGaLocation":753},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":763,"config":764},"Get Started",{"href":765,"dataGaName":766,"dataGaLocation":753},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":768,"mobileIcon":772,"desktopIcon":774},{"text":769,"config":770},"Learn more about GitLab Duo",{"href":410,"dataGaName":771,"dataGaLocation":753},"gitlab duo",{"altText":755,"config":773},{"src":757,"dataGaName":758,"dataGaLocation":753},{"altText":755,"config":775},{"src":761,"dataGaName":758,"dataGaLocation":753},{"button":777,"mobileIcon":782,"desktopIcon":784},{"text":778,"config":779},"/switch",{"href":780,"dataGaName":781,"dataGaLocation":753},"#contact","switch",{"altText":755,"config":783},{"src":757,"dataGaName":758,"dataGaLocation":753},{"altText":755,"config":785},{"src":786,"dataGaName":758,"dataGaLocation":753},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":788,"mobileIcon":793,"desktopIcon":795},{"text":789,"config":790},"Back to pricing",{"href":523,"dataGaName":791,"dataGaLocation":753,"icon":792},"back to pricing","GoBack",{"altText":755,"config":794},{"src":757,"dataGaName":758,"dataGaLocation":753},{"altText":755,"config":796},{"src":761,"dataGaName":758,"dataGaLocation":753},{"title":798,"titleMobile":799,"button":800,"config":805},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":416,"config":801},{"href":802,"dataGaName":803,"dataGaLocation":804},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":806,"disabled":350},"release",{"data":808},{"text":809,"source":810,"edit":816,"contribute":821,"config":826,"items":831,"minimal":1039},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":811,"config":812},"View page source",{"href":813,"dataGaName":814,"dataGaLocation":815},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":817,"config":818},"Edit this page",{"href":819,"dataGaName":820,"dataGaLocation":815},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":822,"config":823},"Please contribute",{"href":824,"dataGaName":825,"dataGaLocation":815},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":827,"facebook":828,"youtube":829,"linkedin":830},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[832,879,931,975,1007],{"title":521,"links":833,"subMenu":848},[834,838,843],{"text":835,"config":836},"View plans",{"href":523,"dataGaName":837,"dataGaLocation":815},"view plans",{"text":839,"config":840},"Why Premium?",{"href":841,"dataGaName":842,"dataGaLocation":815},"/pricing/premium/","why premium",{"text":844,"config":845},"Why Ultimate?",{"href":846,"dataGaName":847,"dataGaLocation":815},"/pricing/ultimate/","why ultimate",[849],{"title":850,"links":851},"Contact Us",[852,855,857,859,864,869,874],{"text":853,"config":854},"Contact sales",{"href":705,"dataGaName":384,"dataGaLocation":815},{"text":708,"config":856},{"href":710,"dataGaName":711,"dataGaLocation":815},{"text":713,"config":858},{"href":715,"dataGaName":716,"dataGaLocation":815},{"text":860,"config":861},"Status",{"href":862,"dataGaName":863,"dataGaLocation":815},"https://status.gitlab.com/","status",{"text":865,"config":866},"Terms of use",{"href":867,"dataGaName":868,"dataGaLocation":815},"/terms/","terms of use",{"text":870,"config":871},"Privacy statement",{"href":872,"dataGaName":873,"dataGaLocation":815},"/privacy/","privacy statement",{"text":875,"config":876},"Cookie preferences",{"dataGaName":877,"dataGaLocation":815,"id":878,"isOneTrustButton":353},"cookie preferences","ot-sdk-btn",{"title":421,"links":880,"subMenu":888},[881,884],{"text":363,"config":882},{"href":403,"dataGaName":883,"dataGaLocation":815},"devsecops platform",{"text":885,"config":886},"AI-Assisted Development",{"href":410,"dataGaName":887,"dataGaLocation":815},"ai-assisted development",[889],{"title":890,"links":891},"Topics",[892,897,902,907,912,916,921,926],{"text":893,"config":894},"CICD",{"href":895,"dataGaName":896,"dataGaLocation":815},"/topics/ci-cd/","cicd",{"text":898,"config":899},"GitOps",{"href":900,"dataGaName":901,"dataGaLocation":815},"/topics/gitops/","gitops",{"text":903,"config":904},"DevOps",{"href":905,"dataGaName":906,"dataGaLocation":815},"/topics/devops/","devops",{"text":908,"config":909},"Version Control",{"href":910,"dataGaName":911,"dataGaLocation":815},"/topics/version-control/","version control",{"text":362,"config":913},{"href":914,"dataGaName":915,"dataGaLocation":815},"/topics/devsecops/","devsecops",{"text":917,"config":918},"Cloud Native",{"href":919,"dataGaName":920,"dataGaLocation":815},"/topics/cloud-native/","cloud native",{"text":922,"config":923},"AI for Coding",{"href":924,"dataGaName":925,"dataGaLocation":815},"/topics/devops/ai-for-coding/","ai for coding",{"text":927,"config":928},"Agentic AI",{"href":929,"dataGaName":930,"dataGaLocation":815},"/topics/agentic-ai/","agentic ai",{"title":932,"links":933},"Solutions",[934,936,938,943,947,950,954,957,959,962,965,970],{"text":465,"config":935},{"href":460,"dataGaName":465,"dataGaLocation":815},{"text":454,"config":937},{"href":437,"dataGaName":438,"dataGaLocation":815},{"text":939,"config":940},"Agile development",{"href":941,"dataGaName":942,"dataGaLocation":815},"/solutions/agile-delivery/","agile delivery",{"text":944,"config":945},"SCM",{"href":450,"dataGaName":946,"dataGaLocation":815},"source code management",{"text":893,"config":948},{"href":443,"dataGaName":949,"dataGaLocation":815},"continuous integration & delivery",{"text":951,"config":952},"Value stream management",{"href":493,"dataGaName":953,"dataGaLocation":815},"value stream management",{"text":898,"config":955},{"href":956,"dataGaName":901,"dataGaLocation":815},"/solutions/gitops/",{"text":503,"config":958},{"href":506,"dataGaName":507,"dataGaLocation":815},{"text":960,"config":961},"Small business",{"href":512,"dataGaName":513,"dataGaLocation":815},{"text":963,"config":964},"Public sector",{"href":518,"dataGaName":519,"dataGaLocation":815},{"text":966,"config":967},"Education",{"href":968,"dataGaName":969,"dataGaLocation":815},"/solutions/education/","education",{"text":971,"config":972},"Financial services",{"href":973,"dataGaName":974,"dataGaLocation":815},"/solutions/finance/","financial services",{"title":526,"links":976},[977,979,981,983,986,988,991,993,995,997,999,1001,1003,1005],{"text":539,"config":978},{"href":541,"dataGaName":542,"dataGaLocation":815},{"text":544,"config":980},{"href":546,"dataGaName":547,"dataGaLocation":815},{"text":549,"config":982},{"href":551,"dataGaName":552,"dataGaLocation":815},{"text":554,"config":984},{"href":556,"dataGaName":985,"dataGaLocation":815},"docs",{"text":577,"config":987},{"href":579,"dataGaName":580,"dataGaLocation":815},{"text":989,"config":990},"What's new",{"href":637,"dataGaName":638,"dataGaLocation":815},{"text":572,"config":992},{"href":574,"dataGaName":575,"dataGaLocation":815},{"text":591,"config":994},{"href":593,"dataGaName":594,"dataGaLocation":815},{"text":599,"config":996},{"href":601,"dataGaName":602,"dataGaLocation":815},{"text":604,"config":998},{"href":606,"dataGaName":607,"dataGaLocation":815},{"text":609,"config":1000},{"href":611,"dataGaName":612,"dataGaLocation":815},{"text":614,"config":1002},{"href":616,"dataGaName":617,"dataGaLocation":815},{"text":619,"config":1004},{"href":621,"dataGaName":622,"dataGaLocation":815},{"text":624,"config":1006},{"href":626,"dataGaName":627,"dataGaLocation":815},{"title":640,"links":1008},[1009,1011,1013,1015,1017,1019,1023,1028,1030,1032,1034],{"text":648,"config":1010},{"href":650,"dataGaName":642,"dataGaLocation":815},{"text":653,"config":1012},{"href":655,"dataGaName":656,"dataGaLocation":815},{"text":661,"config":1014},{"href":663,"dataGaName":664,"dataGaLocation":815},{"text":666,"config":1016},{"href":668,"dataGaName":669,"dataGaLocation":815},{"text":671,"config":1018},{"href":673,"dataGaName":674,"dataGaLocation":815},{"text":1020,"config":1021},"Sustainability",{"href":1022,"dataGaName":1020,"dataGaLocation":815},"/sustainability/",{"text":1024,"config":1025},"Diversity, inclusion and belonging (DIB)",{"href":1026,"dataGaName":1027,"dataGaLocation":815},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":676,"config":1029},{"href":678,"dataGaName":679,"dataGaLocation":815},{"text":686,"config":1031},{"href":688,"dataGaName":689,"dataGaLocation":815},{"text":691,"config":1033},{"href":693,"dataGaName":694,"dataGaLocation":815},{"text":1035,"config":1036},"Modern Slavery Transparency Statement",{"href":1037,"dataGaName":1038,"dataGaLocation":815},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1040},[1041,1044,1047],{"text":1042,"config":1043},"Terms",{"href":867,"dataGaName":868,"dataGaLocation":815},{"text":1045,"config":1046},"Cookies",{"dataGaName":877,"dataGaLocation":815,"id":878,"isOneTrustButton":353},{"text":1048,"config":1049},"Privacy",{"href":872,"dataGaName":873,"dataGaLocation":815},[1051,1065],{"id":1052,"title":7,"body":349,"config":1053,"content":1055,"description":349,"extension":1059,"meta":1060,"navigation":353,"path":1061,"seo":1062,"stem":1063,"__hash__":1064},"blogAuthors/en-us/blog/authors/claire-champernowne.yml",{"template":1054},"BlogAuthor",{"name":7,"config":1056},{"headshot":1057,"ctfId":1058},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664698/Blog/Author%20Headshots/clair_champernowne_headshot.png","jNt5P04nQ4dptXOKZZ8ZQ","yml",{},"/en-us/blog/authors/claire-champernowne",{},"en-us/blog/authors/claire-champernowne","OnZQjcD7hICotLx3XJblGd0BUyGYfV_8I2JLe-yr6Z4",{"id":1066,"title":8,"body":349,"config":1067,"content":1068,"description":349,"extension":1059,"meta":1072,"navigation":353,"path":1073,"seo":1074,"stem":1075,"__hash__":1076},"blogAuthors/en-us/blog/authors/noah-ing.yml",{"template":1054},{"name":8,"config":1069},{"headshot":1070,"ctfId":1071},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664410/Blog/Author%20Headshots/noahing.png","noahing",{},"/en-us/blog/authors/noah-ing",{},"en-us/blog/authors/noah-ing","NHgV_yTX8kHX01mE2SSxC6hcOMw3BCWiblr8m6csLkw",[1078,1084,1088],{"title":1079,"description":1080,"heroImage":1081,"category":345,"date":1082,"authors":349,"slug":349,"externalUrl":1083},"GitLab Patch Release: 19.2.2, 19.1.4, 19.0.6","Learn about this latest patch release for Community Edition and Enterprise Edition.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661926/Blog/Hero%20Images/security-patch-blog-image-r2-0506-700x400-fy25_2x.jpg","2026-08-12","https://docs.gitlab.com/releases/patches/patch-release-gitlab-19-2-2-released/",{"title":1085,"description":1080,"heroImage":1081,"category":345,"date":1086,"authors":349,"slug":349,"externalUrl":1087}," GitLab Patch Release: 19.2.1, 19.1.3, 19.0.5","2026-07-29","https://docs.gitlab.com/releases/patches/patch-release-gitlab-19-2-1-released/",{"title":1089,"description":1090,"heroImage":1091,"category":345,"date":1092,"authors":1093,"slug":1095,"externalUrl":349},"Automate work item assignment with a \"Work item created\" trigger","Our step-by-step guide walks through this AI capability, which enables instant, scalable triage without manual intervention.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1773866173/vte9qh8rriznvyclhkes.png","2026-07-20",[1094],"Cesar Saavedra","how-to-use-a-work-item-created-trigger",{"promotions":1097},[1098,1112,1123,1135],{"id":1099,"categories":1100,"header":1102,"text":1103,"button":1104,"image":1109},"ai-modernization",[1101],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":1105,"config":1106},"Get your AI maturity score",{"href":1107,"dataGaName":1108,"dataGaLocation":580},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1110},{"src":1111},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1113,"categories":1114,"header":1115,"text":1103,"button":1116,"image":1120},"devops-modernization",[345,915],"Are you just managing tools or shipping innovation?",{"text":1117,"config":1118},"Get your DevOps maturity score",{"href":1119,"dataGaName":1108,"dataGaLocation":580},"/assessments/devops-modernization-assessment/",{"config":1121},{"src":1122},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1124,"categories":1125,"header":1127,"text":1103,"button":1128,"image":1132},"security-modernization",[1126],"security","Are you trading speed for security?",{"text":1129,"config":1130},"Get your security maturity score",{"href":1131,"dataGaName":1108,"dataGaLocation":580},"/assessments/security-modernization-assessment/",{"config":1133},{"src":1134},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1136,"paths":1137,"header":1140,"text":1141,"button":1142,"image":1147},"github-azure-migration",[1138,1139],"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":1143,"config":1144},"See how GitLab compares to GitHub",{"href":1145,"dataGaName":1146,"dataGaLocation":580},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1148},{"src":1122},{"header":1150,"blurb":1151,"button":1152,"secondaryButton":1157},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1153,"config":1154},"Get your free trial",{"href":1155,"dataGaName":379,"dataGaLocation":1156},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":853,"config":1158},{"href":705,"dataGaName":384,"dataGaLocation":1156},1786803748788]