[{"data":1,"prerenderedAt":1016},["ShallowReactive",2],{"/blog/four-approaches-to-gitlab-integrations":3,"navigation-en-us":234,"banner-en-us":660,"footer-en-us":670,"blog-post-authors-en-us-Kurt Dusek":913,"blog-related-posts-en-us-four-approaches-to-gitlab-integrations":927,"blog-promotions-en-us":952,"next-steps-en-us":1006},{"id":4,"title":5,"authors":6,"body":8,"category":212,"date":213,"description":214,"extension":215,"externalUrl":216,"faq":216,"featured":217,"heroImage":218,"meta":219,"navigation":220,"path":221,"seo":222,"slug":226,"stem":227,"tags":228,"template":232,"updatedDate":216,"__hash__":233},"blogPosts/en-us/blog/four-approaches-to-gitlab-integrations.md","4 approaches to GitLab integrations",[7],"Kurt Dusek",{"type":9,"value":10,"toc":198},"minimark",[11,15,18,23,26,30,33,49,52,64,67,83,89,121,125,140,165,169,190],[12,13,14],"p",{},"The benefit of a DevSecOps platform is to create a foundation upon which an organization can build its entire development process. Rather than having to log onto several different systems to manage, observe, and advance through the software development lifecycle, DevSecOps teams have one application to serve as their system of record. To augment the platform and create even more business value, organizations can create integrations with third-party software and systems, while still maintaining a unified experience for stakeholders, developers, and operators.",[12,16,17],{},"Let's look at what integrations are possible and the use cases that drive them.",[19,20,22],"h2",{"id":21},"what-can-be-integrated-with-gitlab","What can be integrated with GitLab",[12,24,25],{},"As a senior solutions architect for Alliances here at GitLab, I often get asked, \"How can I integrate GitLab with X?\" My response: That depends on what's being integrated. X could be a cloud provider, point tool, legacy application or web service that might be used in the development cycle.",[19,27,29],{"id":28},"how-to-integrate-with-gitlab","How to integrate with GitLab",[12,31,32],{},"There are four approaches to GitLab integrations:",[34,35,36,40,43,46],"ol",{},[37,38,39],"li",{},"Use GitLab to deploy client applications to X / Host GitLab runners on X",[37,41,42],{},"Host GitLab Server on X",[37,44,45],{},"Integrate with the development cycle",[37,47,48],{},"Deep GitLab application integration",[12,50,51],{},"Let's dig deeper into each one.",[53,54,56,57,61,62],"h3",{"id":55},"_1-use-gitlab-to-deploy-client-applications-to-x-or-host-gitlab-runners-on-x","1. Use GitLab to deploy client applications to ",[58,59,60],"code",{},"X"," or Host GitLab runners on ",[58,63,60],{},[12,65,66],{},"A very common use case and typically the easiest to achieve. For instance, platform providers, who want to make it easy for their users to run apps built with GitLab on their infrastructure or application server, are often asked for this option. The path is to have GitLab Server be able to authenticate to the hosting platform, and deploy the (ideally containerized) application to the platform.",[12,68,69,70,76,77,82],{},"A close cousin of this is the need to deploy ",[71,72,75],"a",{"href":73,"rel":74},"https://docs.gitlab.com/runner/",[],"GitLab runners"," to the infrastructure and register them with a GitLab instance, be it GitLab.com or a self-managed instance. Runners are easy to setup and register, and can be ",[71,78,81],{"href":79,"rel":80},"https://docs.gitlab.com/runner/fleet_scaling/",[],"configured and scaled in many different ways",".",[53,84,86,87],{"id":85},"_2-host-gitlab-server-on-x","2. Host GitLab Server on ",[58,88,60],{},[12,90,91,92,97,98,97,103,108,109,114,115,120],{},"Platform providers are also asked to host GitLab Server on their infrastructure. What makes this easy is GitLab runs almost anywhere; if you've got Linux, you can run GitLab Server (even on a Raspberry Pi). The work has already been done for the major cloud providers, including ",[71,93,96],{"href":94,"rel":95},"https://docs.gitlab.com/install/google_cloud_platform/",[],"GCP",", ",[71,99,102],{"href":100,"rel":101},"https://docs.gitlab.com/install/aws/",[],"AWS",[71,104,107],{"href":105,"rel":106},"https://docs.gitlab.com/install/azure/",[],"Azure",", and ",[71,110,113],{"href":111,"rel":112},"https://docs.oracle.com/en/solutions/deploy-gitlab-ci-cd-oci/index.html",[],"Oracle Cloud",". If you want to run on your own infrastructure, the ",[71,116,119],{"href":117,"rel":118},"https://docs.gitlab.com/omnibus/",[],"Omnibus"," installer does most of the heavy lifting for you; it's the easiest way to self-host GitLab.",[53,122,124],{"id":123},"_3-integrate-with-the-development-cycle","3. Integrate with the development cycle",[12,126,127,128,133,134,139],{},"Here's where it starts to get a bit more involved. The good news is that GitLab has extensive ",[71,129,132],{"href":130,"rel":131},"https://docs.gitlab.com/api/",[],"APIs"," and ",[71,135,138],{"href":136,"rel":137},"https://docs.gitlab.com/user/project/integrations/webhooks/",[],"webhooks"," that allow for listening for events and pushing and pulling data.",[12,141,142,143,148,149,153,154,97,159,164],{},"If the goal is to integrate with the ",[71,144,147],{"href":145,"rel":146},"https://docs.gitlab.com/ci/",[],"CI/CD pipeline",", this can be done by creating a container image that encapsulates the application or scripts necessary and defining a job within the pipeline that uses this image to run the integration. It's likely the integrated app produces some output that ",[150,151,152],"strong",{},"someone"," needs to review. Displaying this output directly within the Merge Request elevates third-party data rather than something that has to be searched for in another system.  Depending on the nature of the tool being integrated, it's possible to show results and a ",[71,155,158],{"href":156,"rel":157},"https://docs.gitlab.com/development/integrations/secure/#report",[],"security report",[71,160,163],{"href":161,"rel":162},"https://docs.gitlab.com/ci/testing/metrics_reports/",[],"metrics report",", or artifact that can contain almost any type of data.",[53,166,168],{"id":167},"_4-deep-gitlab-application-integration","4. Deep GitLab application integration",[12,170,171,172,177,178,183,184,189],{},"This is the most complex since it requires an understanding of the ",[71,173,176],{"href":174,"rel":175},"https://docs.gitlab.com/development/architecture/#simplified-component-overview",[],"architecture of the GitLab application",", and how an outside service will interact with and support this architecture. An example of this would be a managed PostgresSQL or Redis service. There's a potential risk of downtime if this type of integration goes wrong, so it's important to test thoroughly in a production-like environment before considering it production-ready. Fortunately GitLab publishes several tools to do this. ",[71,179,182],{"href":180,"rel":181},"https://handbook.gitlab.com/handbook/support/workflows/gpt_quick_start/",[],"GitLab Performance Tool (GPT)"," provides an excellent way to measure and report on the performance of a GitLab instance under various usage scenarios. Its counterpart ",[71,185,188],{"href":186,"rel":187},"https://gitlab.com/gitlab-org/quality/performance-sitespeed",[],"GitLab Browser Performance Tool"," tests the browser performance of various GitLab pages.",[12,191,192,193,82],{},"Read more on ",[71,194,197],{"href":195,"rel":196},"https://blog.scientifik.org/",[],"Kurt Dusek's blog",{"title":199,"searchDepth":200,"depth":200,"links":201},"",2,[202,203],{"id":21,"depth":200,"text":22},{"id":28,"depth":200,"text":29,"children":204},[205,208,210,211],{"id":55,"depth":206,"text":207},3,"1. Use GitLab to deploy client applications to X or Host GitLab runners on X",{"id":85,"depth":206,"text":209},"2. Host GitLab Server on X",{"id":123,"depth":206,"text":124},{"id":167,"depth":206,"text":168},"devsecops","2023-01-26","Learn about use cases that help extract even more value from a DevSecOps platform.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749667946/Blog/Hero%20Images/4-facets-of-gitlab-integration.png",{},true,"/en-us/blog/four-approaches-to-gitlab-integrations",{"title":5,"description":214,"ogTitle":5,"ogDescription":214,"noIndex":217,"ogImage":218,"ogUrl":223,"ogSiteName":224,"ogType":225,"canonicalUrls":223},"https://about.gitlab.com/blog/four-approaches-to-gitlab-integrations","https://about.gitlab.com","article","four-approaches-to-gitlab-integrations","en-us/blog/four-approaches-to-gitlab-integrations",[229,230,231],"integrations","partners","DevOps","BlogPost","bxRFwBWBik5i79Vg-9cNmPF8YilDrEmLZxGSxA_BIH0",{"logo":235,"freeTrial":240,"sales":245,"login":250,"items":255,"search":580,"minimal":611,"duo":630,"switchNav":639,"pricingDeployment":650},{"config":236},{"href":237,"dataGaName":238,"dataGaLocation":239},"/","gitlab logo","header",{"text":241,"config":242},"Get free trial",{"href":243,"dataGaName":244,"dataGaLocation":239},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":246,"config":247},"Request a demo",{"href":248,"dataGaName":249,"dataGaLocation":239},"/sales/?contact-topic=request-demo","sales",{"text":251,"config":252},"Sign in",{"href":253,"dataGaName":254,"dataGaLocation":239},"https://gitlab.com/users/sign_in/","sign in",[256,285,385,390,502,558],{"text":257,"config":258,"menu":260},"Platform",{"dataNavLevelOne":259},"platform",{"type":261,"columns":262},"cards",[263,269,277],{"title":257,"description":264,"link":265},"The intelligent orchestration platform for DevSecOps",{"text":266,"config":267},"Explore our Platform",{"href":268,"dataGaName":259,"dataGaLocation":239},"/platform/",{"title":270,"description":271,"link":272},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":273,"config":274},"Meet GitLab Duo",{"href":275,"dataGaName":276,"dataGaLocation":239},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":278,"description":279,"link":280},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":281,"config":282},"Learn more",{"href":283,"dataGaName":284,"dataGaLocation":239},"/why-gitlab/","why gitlab",{"text":286,"left":220,"config":287,"menu":289},"Product",{"dataNavLevelOne":288},"solutions",{"type":290,"link":291,"columns":295,"feature":364},"lists",{"text":292,"config":293},"View all Solutions",{"href":294,"dataGaName":288,"dataGaLocation":239},"/solutions/",[296,320,343],{"title":297,"description":298,"link":299,"items":304},"Automation","CI/CD and automation to accelerate deployment",{"config":300},{"icon":301,"href":302,"dataGaName":303,"dataGaLocation":239},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[305,309,312,316],{"text":306,"config":307},"CI/CD",{"href":308,"dataGaLocation":239,"dataGaName":306},"/solutions/continuous-integration/",{"text":270,"config":310},{"href":275,"dataGaLocation":239,"dataGaName":311},"gitlab duo agent platform - product menu",{"text":313,"config":314},"Source Code Management",{"href":315,"dataGaLocation":239,"dataGaName":313},"/solutions/source-code-management/",{"text":317,"config":318},"Automated Software Delivery",{"href":302,"dataGaLocation":239,"dataGaName":319},"Automated software delivery",{"title":321,"description":322,"link":323,"items":328},"Security","Deliver code faster without compromising security",{"config":324},{"href":325,"dataGaName":326,"dataGaLocation":239,"icon":327},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[329,333,338],{"text":330,"config":331},"Application Security Testing",{"href":325,"dataGaName":332,"dataGaLocation":239},"Application security testing",{"text":334,"config":335},"Software Supply Chain Security",{"href":336,"dataGaLocation":239,"dataGaName":337},"/solutions/supply-chain/","Software supply chain security",{"text":339,"config":340},"Software Compliance",{"href":341,"dataGaName":342,"dataGaLocation":239},"/solutions/software-compliance/","software compliance",{"title":344,"link":345,"items":350},"Measurement",{"config":346},{"icon":347,"href":348,"dataGaName":349,"dataGaLocation":239},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[351,355,359],{"text":352,"config":353},"Visibility & Measurement",{"href":348,"dataGaLocation":239,"dataGaName":354},"Visibility and Measurement",{"text":356,"config":357},"Value Stream Management",{"href":358,"dataGaLocation":239,"dataGaName":356},"/solutions/value-stream-management/",{"text":360,"config":361},"Analytics & Insights",{"href":362,"dataGaLocation":239,"dataGaName":363},"/solutions/analytics-and-insights/","Analytics and insights",{"title":365,"type":290,"items":366},"GitLab for",[367,373,379],{"text":368,"config":369},"Enterprise",{"icon":370,"href":371,"dataGaLocation":239,"dataGaName":372},"Building","/enterprise/","enterprise",{"text":374,"config":375},"Small Business",{"icon":376,"href":377,"dataGaLocation":239,"dataGaName":378},"Work","/small-business/","small business",{"text":380,"config":381},"Public Sector",{"icon":382,"href":383,"dataGaLocation":239,"dataGaName":384},"Organization","/solutions/public-sector/","public sector",{"text":386,"config":387},"Pricing",{"href":388,"dataGaName":389,"dataGaLocation":239,"dataNavLevelOne":389},"/pricing/","pricing",{"text":391,"config":392,"menu":394},"Resources",{"dataNavLevelOne":393},"resources",{"type":290,"link":395,"columns":399,"feature":491},{"text":396,"config":397},"View all resources",{"href":398,"dataGaName":393,"dataGaLocation":239},"/resources/",[400,432,459],{"title":401,"items":402},"Getting started",[403,408,413,418,423,428],{"text":404,"config":405},"Install",{"href":406,"dataGaName":407,"dataGaLocation":239},"/install/","install",{"text":409,"config":410},"Quick start guides",{"href":411,"dataGaName":412,"dataGaLocation":239},"/get-started/","quick setup checklists",{"text":414,"config":415},"Learn",{"href":416,"dataGaLocation":239,"dataGaName":417},"https://university.gitlab.com/","learn",{"text":419,"config":420},"Product documentation",{"href":421,"dataGaName":422,"dataGaLocation":239},"https://docs.gitlab.com/","product documentation",{"text":424,"config":425},"Best practice videos",{"href":426,"dataGaName":427,"dataGaLocation":239},"/getting-started-videos/","best practice videos",{"text":429,"config":430},"Integrations",{"href":431,"dataGaName":229,"dataGaLocation":239},"/integrations/",{"title":433,"items":434},"Discover",[435,440,445,450,454],{"text":436,"config":437},"Customer success stories",{"href":438,"dataGaName":439,"dataGaLocation":239},"/customers/","customer success stories",{"text":441,"config":442},"Blog",{"href":443,"dataGaName":444,"dataGaLocation":239},"/blog/","blog",{"text":446,"config":447},"Demo Hub",{"href":448,"dataGaName":449,"dataGaLocation":239},"/demo-hub/","demo hub",{"text":451,"config":452},"The Source",{"href":453,"dataGaName":444,"dataGaLocation":239},"/the-source/",{"text":455,"config":456},"Remote",{"href":457,"dataGaName":458,"dataGaLocation":239},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":460,"items":461},"Connect",[462,467,472,477,482,487],{"text":463,"config":464},"GitLab Services",{"href":465,"dataGaName":466,"dataGaLocation":239},"/services/","services",{"text":468,"config":469},"Contribute",{"href":470,"dataGaName":471,"dataGaLocation":239},"https://contributors.gitlab.com","contribute",{"text":473,"config":474},"Community",{"href":475,"dataGaName":476,"dataGaLocation":239},"/community/","community",{"text":478,"config":479},"Forum",{"href":480,"dataGaName":481,"dataGaLocation":239},"https://forum.gitlab.com/","forum",{"text":483,"config":484},"Events",{"href":485,"dataGaName":486,"dataGaLocation":239},"/events/","events",{"text":488,"config":489},"Partners",{"href":490,"dataGaName":230,"dataGaLocation":239},"/partners/",{"config":492,"title":495,"text":496,"link":497},{"background":493,"textColor":494},"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":498,"config":499},"Read the latest",{"href":500,"dataGaName":501,"dataGaLocation":239},"/whats-new/","whats new",{"text":503,"config":504,"menu":506},"Company",{"dataNavLevelOne":505},"company",{"type":290,"columns":507},[508],{"items":509},[510,515,521,523,528,533,538,543,548,553],{"text":511,"config":512},"About",{"href":513,"dataGaName":514,"dataGaLocation":239},"/company/","about",{"text":516,"config":517,"footerGa":520},"Jobs",{"href":518,"dataGaName":519,"dataGaLocation":239},"/jobs/","jobs",{"dataGaName":519},{"text":483,"config":522},{"href":485,"dataGaName":486,"dataGaLocation":239},{"text":524,"config":525},"Leadership",{"href":526,"dataGaName":527,"dataGaLocation":239},"/company/team/e-group/","leadership",{"text":529,"config":530},"Handbook",{"href":531,"dataGaName":532,"dataGaLocation":239},"https://handbook.gitlab.com/","handbook",{"text":534,"config":535},"Investor relations",{"href":536,"dataGaName":537,"dataGaLocation":239},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":539,"config":540},"Trust Center",{"href":541,"dataGaName":542,"dataGaLocation":239},"/security/","trust center",{"text":544,"config":545},"AI Transparency Center",{"href":546,"dataGaName":547,"dataGaLocation":239},"/ai-transparency-center/","ai transparency center",{"text":549,"config":550},"Newsletter",{"href":551,"dataGaName":552,"dataGaLocation":239},"/company/contact/#contact-forms","newsletter",{"text":554,"config":555},"Press",{"href":556,"dataGaName":557,"dataGaLocation":239},"/press/","press",{"text":559,"config":560,"menu":561},"Contact us",{"dataNavLevelOne":505},{"type":290,"columns":562},[563],{"items":564},[565,570,575],{"text":566,"config":567},"Talk to sales",{"href":568,"dataGaName":569,"dataGaLocation":239},"/sales/","talk to sales",{"text":571,"config":572},"Support portal",{"href":573,"dataGaName":574,"dataGaLocation":239},"https://support.gitlab.com/hc/en-us","support portal",{"text":576,"config":577},"Customer portal",{"href":578,"dataGaName":579,"dataGaLocation":239},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":581,"login":582,"suggestions":589},"Close",{"text":583,"link":584},"To search repositories and projects, login to",{"text":585,"config":586},"gitlab.com",{"href":253,"dataGaName":587,"dataGaLocation":588},"search login","search",{"text":590,"default":591},"Suggestions",[592,594,598,600,604,608],{"text":270,"config":593},{"href":275,"dataGaName":270,"dataGaLocation":588},{"text":595,"config":596},"Code Suggestions (AI)",{"href":597,"dataGaName":595,"dataGaLocation":588},"/solutions/code-suggestions/",{"text":306,"config":599},{"href":308,"dataGaName":306,"dataGaLocation":588},{"text":601,"config":602},"GitLab on AWS",{"href":603,"dataGaName":601,"dataGaLocation":588},"/partners/technology-partners/aws/",{"text":605,"config":606},"GitLab on Google Cloud",{"href":607,"dataGaName":605,"dataGaLocation":588},"/partners/technology-partners/google-cloud-platform/",{"text":609,"config":610},"Why GitLab?",{"href":283,"dataGaName":609,"dataGaLocation":588},{"freeTrial":612,"mobileIcon":617,"desktopIcon":622,"secondaryButton":625},{"text":613,"config":614},"Start free trial",{"href":615,"dataGaName":244,"dataGaLocation":616},"https://gitlab.com/-/trials/new/","nav",{"altText":618,"config":619},"Gitlab Icon",{"src":620,"dataGaName":621,"dataGaLocation":616},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":618,"config":623},{"src":624,"dataGaName":621,"dataGaLocation":616},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":626,"config":627},"Get Started",{"href":628,"dataGaName":629,"dataGaLocation":616},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":631,"mobileIcon":635,"desktopIcon":637},{"text":632,"config":633},"Learn more about GitLab Duo",{"href":275,"dataGaName":634,"dataGaLocation":616},"gitlab duo",{"altText":618,"config":636},{"src":620,"dataGaName":621,"dataGaLocation":616},{"altText":618,"config":638},{"src":624,"dataGaName":621,"dataGaLocation":616},{"button":640,"mobileIcon":645,"desktopIcon":647},{"text":641,"config":642},"/switch",{"href":643,"dataGaName":644,"dataGaLocation":616},"#contact","switch",{"altText":618,"config":646},{"src":620,"dataGaName":621,"dataGaLocation":616},{"altText":618,"config":648},{"src":649,"dataGaName":621,"dataGaLocation":616},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":651,"mobileIcon":656,"desktopIcon":658},{"text":652,"config":653},"Back to pricing",{"href":388,"dataGaName":654,"dataGaLocation":616,"icon":655},"back to pricing","GoBack",{"altText":618,"config":657},{"src":620,"dataGaName":621,"dataGaLocation":616},{"altText":618,"config":659},{"src":624,"dataGaName":621,"dataGaLocation":616},{"title":661,"titleMobile":662,"button":663,"config":668},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":281,"config":664},{"href":665,"dataGaName":666,"dataGaLocation":667},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":669,"disabled":217},"release",{"data":671},{"text":672,"source":673,"edit":679,"contribute":684,"config":689,"items":694,"minimal":902},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":674,"config":675},"View page source",{"href":676,"dataGaName":677,"dataGaLocation":678},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":680,"config":681},"Edit this page",{"href":682,"dataGaName":683,"dataGaLocation":678},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":685,"config":686},"Please contribute",{"href":687,"dataGaName":688,"dataGaLocation":678},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":690,"facebook":691,"youtube":692,"linkedin":693},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[695,742,794,838,870],{"title":386,"links":696,"subMenu":711},[697,701,706],{"text":698,"config":699},"View plans",{"href":388,"dataGaName":700,"dataGaLocation":678},"view plans",{"text":702,"config":703},"Why Premium?",{"href":704,"dataGaName":705,"dataGaLocation":678},"/pricing/premium/","why premium",{"text":707,"config":708},"Why Ultimate?",{"href":709,"dataGaName":710,"dataGaLocation":678},"/pricing/ultimate/","why ultimate",[712],{"title":713,"links":714},"Contact Us",[715,718,720,722,727,732,737],{"text":716,"config":717},"Contact sales",{"href":568,"dataGaName":249,"dataGaLocation":678},{"text":571,"config":719},{"href":573,"dataGaName":574,"dataGaLocation":678},{"text":576,"config":721},{"href":578,"dataGaName":579,"dataGaLocation":678},{"text":723,"config":724},"Status",{"href":725,"dataGaName":726,"dataGaLocation":678},"https://status.gitlab.com/","status",{"text":728,"config":729},"Terms of use",{"href":730,"dataGaName":731,"dataGaLocation":678},"/terms/","terms of use",{"text":733,"config":734},"Privacy statement",{"href":735,"dataGaName":736,"dataGaLocation":678},"/privacy/","privacy statement",{"text":738,"config":739},"Cookie preferences",{"dataGaName":740,"dataGaLocation":678,"id":741,"isOneTrustButton":220},"cookie preferences","ot-sdk-btn",{"title":286,"links":743,"subMenu":752},[744,748],{"text":745,"config":746},"DevSecOps platform",{"href":268,"dataGaName":747,"dataGaLocation":678},"devsecops platform",{"text":749,"config":750},"AI-Assisted Development",{"href":275,"dataGaName":751,"dataGaLocation":678},"ai-assisted development",[753],{"title":754,"links":755},"Topics",[756,761,766,770,775,779,784,789],{"text":757,"config":758},"CICD",{"href":759,"dataGaName":760,"dataGaLocation":678},"/topics/ci-cd/","cicd",{"text":762,"config":763},"GitOps",{"href":764,"dataGaName":765,"dataGaLocation":678},"/topics/gitops/","gitops",{"text":231,"config":767},{"href":768,"dataGaName":769,"dataGaLocation":678},"/topics/devops/","devops",{"text":771,"config":772},"Version Control",{"href":773,"dataGaName":774,"dataGaLocation":678},"/topics/version-control/","version control",{"text":776,"config":777},"DevSecOps",{"href":778,"dataGaName":212,"dataGaLocation":678},"/topics/devsecops/",{"text":780,"config":781},"Cloud Native",{"href":782,"dataGaName":783,"dataGaLocation":678},"/topics/cloud-native/","cloud native",{"text":785,"config":786},"AI for Coding",{"href":787,"dataGaName":788,"dataGaLocation":678},"/topics/devops/ai-for-coding/","ai for coding",{"text":790,"config":791},"Agentic AI",{"href":792,"dataGaName":793,"dataGaLocation":678},"/topics/agentic-ai/","agentic ai",{"title":795,"links":796},"Solutions",[797,799,801,806,810,813,817,820,822,825,828,833],{"text":330,"config":798},{"href":325,"dataGaName":330,"dataGaLocation":678},{"text":319,"config":800},{"href":302,"dataGaName":303,"dataGaLocation":678},{"text":802,"config":803},"Agile development",{"href":804,"dataGaName":805,"dataGaLocation":678},"/solutions/agile-delivery/","agile delivery",{"text":807,"config":808},"SCM",{"href":315,"dataGaName":809,"dataGaLocation":678},"source code management",{"text":757,"config":811},{"href":308,"dataGaName":812,"dataGaLocation":678},"continuous integration & delivery",{"text":814,"config":815},"Value stream management",{"href":358,"dataGaName":816,"dataGaLocation":678},"value stream management",{"text":762,"config":818},{"href":819,"dataGaName":765,"dataGaLocation":678},"/solutions/gitops/",{"text":368,"config":821},{"href":371,"dataGaName":372,"dataGaLocation":678},{"text":823,"config":824},"Small business",{"href":377,"dataGaName":378,"dataGaLocation":678},{"text":826,"config":827},"Public sector",{"href":383,"dataGaName":384,"dataGaLocation":678},{"text":829,"config":830},"Education",{"href":831,"dataGaName":832,"dataGaLocation":678},"/solutions/education/","education",{"text":834,"config":835},"Financial services",{"href":836,"dataGaName":837,"dataGaLocation":678},"/solutions/finance/","financial services",{"title":391,"links":839},[840,842,844,846,849,851,854,856,858,860,862,864,866,868],{"text":404,"config":841},{"href":406,"dataGaName":407,"dataGaLocation":678},{"text":409,"config":843},{"href":411,"dataGaName":412,"dataGaLocation":678},{"text":414,"config":845},{"href":416,"dataGaName":417,"dataGaLocation":678},{"text":419,"config":847},{"href":421,"dataGaName":848,"dataGaLocation":678},"docs",{"text":441,"config":850},{"href":443,"dataGaName":444,"dataGaLocation":678},{"text":852,"config":853},"What's new",{"href":500,"dataGaName":501,"dataGaLocation":678},{"text":436,"config":855},{"href":438,"dataGaName":439,"dataGaLocation":678},{"text":455,"config":857},{"href":457,"dataGaName":458,"dataGaLocation":678},{"text":463,"config":859},{"href":465,"dataGaName":466,"dataGaLocation":678},{"text":468,"config":861},{"href":470,"dataGaName":471,"dataGaLocation":678},{"text":473,"config":863},{"href":475,"dataGaName":476,"dataGaLocation":678},{"text":478,"config":865},{"href":480,"dataGaName":481,"dataGaLocation":678},{"text":483,"config":867},{"href":485,"dataGaName":486,"dataGaLocation":678},{"text":488,"config":869},{"href":490,"dataGaName":230,"dataGaLocation":678},{"title":503,"links":871},[872,874,876,878,880,882,886,891,893,895,897],{"text":511,"config":873},{"href":513,"dataGaName":505,"dataGaLocation":678},{"text":516,"config":875},{"href":518,"dataGaName":519,"dataGaLocation":678},{"text":524,"config":877},{"href":526,"dataGaName":527,"dataGaLocation":678},{"text":529,"config":879},{"href":531,"dataGaName":532,"dataGaLocation":678},{"text":534,"config":881},{"href":536,"dataGaName":537,"dataGaLocation":678},{"text":883,"config":884},"Sustainability",{"href":885,"dataGaName":883,"dataGaLocation":678},"/sustainability/",{"text":887,"config":888},"Diversity, inclusion and belonging (DIB)",{"href":889,"dataGaName":890,"dataGaLocation":678},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":539,"config":892},{"href":541,"dataGaName":542,"dataGaLocation":678},{"text":549,"config":894},{"href":551,"dataGaName":552,"dataGaLocation":678},{"text":554,"config":896},{"href":556,"dataGaName":557,"dataGaLocation":678},{"text":898,"config":899},"Modern Slavery Transparency Statement",{"href":900,"dataGaName":901,"dataGaLocation":678},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":903},[904,907,910],{"text":905,"config":906},"Terms",{"href":730,"dataGaName":731,"dataGaLocation":678},{"text":908,"config":909},"Cookies",{"dataGaName":740,"dataGaLocation":678,"id":741,"isOneTrustButton":220},{"text":911,"config":912},"Privacy",{"href":735,"dataGaName":736,"dataGaLocation":678},[914],{"id":915,"title":7,"body":216,"config":916,"content":918,"description":216,"extension":921,"meta":922,"navigation":220,"path":923,"seo":924,"stem":925,"__hash__":926},"blogAuthors/en-us/blog/authors/kurt-dusek.yml",{"template":917},"BlogAuthor",{"name":7,"config":919},{"headshot":199,"ctfId":920},"kdusek","yml",{},"/en-us/blog/authors/kurt-dusek",{},"en-us/blog/authors/kurt-dusek","dvcRegfwYlzeuLtI9xoZjTg-ec5wQ_hNTfcuC6yVHrY",[928,936,944],{"title":929,"description":930,"heroImage":931,"category":212,"date":932,"authors":933,"slug":935,"externalUrl":216},"Consolidate your GitLab stack with Gitaly on Kubernetes","Discover how to install Gitaly on Kubernetes, which is now generally available.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1756500636/wmey6kqzzuhirk88w2de.png","2026-05-07",[934],"Olivier Campeau","gitaly-on-kubernetes-generally-available",{"title":937,"description":938,"heroImage":939,"category":212,"date":940,"authors":941,"slug":943,"externalUrl":216},"Teaching software development the easy way using GitLab","Learn how University of Washington lecturer Stephen G. Dame uses GitLab for Education to manage student assignments, distribute course materials, and provide inline code feedback at scale.\n","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659537/Blog/Hero%20Images/display-article-image-0679-1800x945-fy26.png","2026-04-29",[942],"Rod Burns","teaching-software-development-the-easy-way-using-gitlab",{"title":945,"description":946,"heroImage":947,"category":212,"date":948,"authors":949,"slug":951,"externalUrl":216},"AI is reshaping DevSecOps: Attend GitLab Transcend to see what’s next","AI-generated code is 34% of development work. Discover how to balance productivity gains with quality, reliability, and security.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1767982271/e9ogyosmuummq7j65zqg.png","2026-01-08",[950],"Manav Khurana","ai-is-reshaping-devsecops-attend-gitlab-transcend-to-see-whats-next",{"promotions":953},[954,968,980,992],{"id":955,"categories":956,"header":958,"text":959,"button":960,"image":965},"ai-modernization",[957],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":961,"config":962},"Get your AI maturity score",{"href":963,"dataGaName":964,"dataGaLocation":444},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":966},{"src":967},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":969,"categories":970,"header":972,"text":959,"button":973,"image":977},"devops-modernization",[971,212],"product","Are you just managing tools or shipping innovation?",{"text":974,"config":975},"Get your DevOps maturity score",{"href":976,"dataGaName":964,"dataGaLocation":444},"/assessments/devops-modernization-assessment/",{"config":978},{"src":979},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":981,"categories":982,"header":984,"text":959,"button":985,"image":989},"security-modernization",[983],"security","Are you trading speed for security?",{"text":986,"config":987},"Get your security maturity score",{"href":988,"dataGaName":964,"dataGaLocation":444},"/assessments/security-modernization-assessment/",{"config":990},{"src":991},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":993,"paths":994,"header":997,"text":998,"button":999,"image":1004},"github-azure-migration",[995,996],"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":1000,"config":1001},"See how GitLab compares to GitHub",{"href":1002,"dataGaName":1003,"dataGaLocation":444},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1005},{"src":979},{"header":1007,"blurb":1008,"button":1009,"secondaryButton":1014},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1010,"config":1011},"Get your free trial",{"href":1012,"dataGaName":244,"dataGaLocation":1013},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":716,"config":1015},{"href":568,"dataGaName":249,"dataGaLocation":1013},1786803759501]