[{"data":1,"prerenderedAt":1002},["ShallowReactive",2],{"/blog/how-to-learn-ci-cd-fast":3,"navigation-en-us":219,"banner-en-us":646,"footer-en-us":656,"blog-post-authors-en-us-Itzik Gan Baruch":898,"blog-related-posts-en-us-how-to-learn-ci-cd-fast":913,"blog-promotions-en-us":938,"next-steps-en-us":992},{"id":4,"title":5,"authors":6,"body":8,"category":197,"date":198,"description":199,"extension":200,"externalUrl":201,"faq":201,"featured":202,"heroImage":203,"meta":204,"navigation":205,"path":206,"seo":207,"slug":211,"stem":212,"tags":213,"template":216,"updatedDate":217,"__hash__":218},"blogPosts/en-us/blog/how-to-learn-ci-cd-fast.md","How to learn CI/CD fast",[7],"Itzik Gan Baruch",{"type":9,"value":10,"toc":179},"minimark",[11,15,20,33,36,44,47,51,60,70,74,77,80,85,88,92,95,99,102,106,121,125,128,132,146,150,153,158,162,165,168],[12,13,14],"p",{},"Continuous integration and continuous delivery (CI/CD) have become the keystone technical architecture of successful DevSecOps implementations. CI/CD has a reputation for being complex and hard to achieve, but that doesn't have to be the case. Modern tools enable teams to get started with minimal configuration and infrastructure management. Here's how you can “start fast” with CI/CD and get some quick, demonstrable performance wins for your DevSecOps team.",[16,17,19],"h2",{"id":18},"what-does-cicd-mean","What does CI/CD mean?",[12,21,22,27,28,32],{},[23,24,26],"a",{"href":25},"/topics/ci-cd/","CI/CD"," refers to a system or systems that enable software development to have continuous integration and continuous delivery capabilities. The architecture underpinning CI/CD is typically referred to as a pipeline, as software progresses through various stages akin to flowing through a pipe. What does ",[23,29,31],{"href":30},"/blog/basics-of-gitlab-ci-updated/","continuous integration and continuous delivery"," actually mean? Taking some time to explore the more granular details will help us set some goals for getting a fast start with CI/CD.",[12,34,35],{},"Starting on the left side of the pipeline, continuous integration encompasses a variety of automation that occurs over the course of multiple stages, designed to test and provide quick feedback on different aspects of code quality, functionality, and security. CI testing can run the gamut from unit tests and linting run locally on a developer workstation, to full integration testing suites and static analysis. Anyone that's ever seen a small code change cause a significant outage or breakage upon reaching production knows the value of automated, repeatable testing, and the downsides of depending on manual testing.",[12,37,38,39,43],{},"Once a code change has passed testing and received all required approvals, it's time to deploy. In legacy environments, system administrators and operations staff often had to manually transfer and install updates, and reboot servers to deploy new features. This type of manual work simply does not scale to the demands of the modern application ecosystem, and is error prone to boot. With continuous delivery, that code is automatically deployed to servers in a testable and deterministic way. Code ",[23,40,42],{"href":41},"/blog/ci-deployment-and-environments/","can be staged in environments"," with less strict SLAs, such as development, staging, and QA. Once it has been verified, the new features can be launched as production workloads. In some environments, \"continuous delivery\" becomes \"continuous deployment,\" in which comprehensive testing automatically deploys new code through to production without human intervention.",[12,45,46],{},"What's the ultimate goal of all this automation? It's what makes a successful software organization: faster deployment cadence.",[16,48,50],{"id":49},"getting-started-with-cicd","Getting started with CI/CD",[12,52,53,54,59],{},"With a little background established, now it's time to focus on the key objective: getting up and running quickly. The primary goal here is to get a quick win with a CI/CD implementation to improve deployment velocity, and hopefully drive a larger effort towards standardizing on widespread and effective CI/CD usage.\nGetting started with CI/CD can appear daunting. There is a wealth of tools, services, and platforms available to provide specific functionality and end-to-end solutions for CI/CD. Some options like ",[23,55,58],{"href":56,"rel":57},"https://www.jenkins.io",[],"Jenkins"," are self-managed and require you to piece together multiple tools; others, including GitLab's DevSecOps platform, provide a comprehensive, integrated solution that combines version control, CI/CD pipelines, security testing, and deployment capabilities all in one unified platform.",[61,62,63,67],"blockquote",{},[16,64,66],{"id":65},"focus-on-developer-experience","Focus on Developer Experience",[12,68,69],{},"A successful CI/CD implementation should make developers' lives easier, not harder. Aim for pipeline runs under 10 minutes and integrate status notifications directly into development tools (IDE extensions, Slack, dashboards). Use parallel test execution and caching to keep pipelines fast as your test suite grows.",[16,71,73],{"id":72},"build-your-pipeline","Build your pipeline",[12,75,76],{},"Realistically, there is no magic bullet configuration for CI/CD. Each implementation will be highly dependent on a number of factors: the type of application being deployed, the size and skillset of the engineering team/s, the business requirements, and the scale of the application itself. The design and implementation considerations for an application that might see 100 users per day is vastly different from one that sees 1 million. The same holds true for CI/CD.",[12,78,79],{},"Below are 7 high-level strategies for tackling that first CI/CD pipeline:",[81,82,84],"h3",{"id":83},"_1-consider-containerization-early","1. Consider containerization early",[12,86,87],{},"Modern CI/CD pipelines commonly leverage containerization with Docker and orchestration platforms like Kubernetes. Containers provide consistent environments across development, testing, and production stages, eliminating the \"it works on my machine\" problem. While not essential for your first pipeline, containerizing your application can significantly simplify deployment processes and reduce environment-related issues. If your application architecture supports it, starting with containers from the beginning will make scaling your CI/CD implementation much easier as your team grows.",[81,89,91],{"id":90},"_2-start-small","2. Start small",[12,93,94],{},"Don't try to fix everything at once. Attempts to refactor an entire codebase or infrastructure will be a complex process, typically involving multiple layers of approval, discussion, planning, and possible pushback from dependent teams. It's much easier to choose a small subset of the application infrastructure to improve.",[81,96,98],{"id":97},"_3-catch-low-hanging-fruit-early","3. Catch low-hanging fruit early",[12,100,101],{},"Some of the simplest and easiest to detect (and fix) errors can end up causing the biggest problems if they make it into production workloads. However, it might not make sense to add unnecessary steps or complexity to the CI/CD pipeline. In this instance, it's a good choice to configure some automatic testing to take place on developer machines before code is committed. Most Git DVCS providers, including GitLab, allow users to deploy pre-commit hooks. Pre-commit hooks are typically some type of script or automation that are triggered when specific actions occur. For example, when a developer initiates a new commit, a pre-commit hook might check that the code conforms to syntactical and structural standards, and is free from basic syntax errors. Other pre-commit hooks might ensure that unit tests are run successfully before a commit is allowed to proceed into the larger pipeline.",[81,103,105],{"id":104},"_4-make-security-a-part-of-cicd","4. Make security a part of CI/CD",[12,107,108,109,114,115,120],{},"Tests shouldn't just be limited to syntax and logic. Catching security issues early in the software development lifecycle (SDLC) means they are much easier, cheaper, and safer to fix. Adding some basic ",[23,110,113],{"href":111,"rel":112},"https://docs.gitlab.com/user/application_security/sast/",[],"static code analysis tools"," and ",[23,116,119],{"href":117,"rel":118},"https://docs.gitlab.com/user/application_security/dependency_scanning/",[],"dependency scanners"," can vastly improve the security posture of an application by providing fast feedback and early detection of security problems and potential vulnerabilities. Consider also adding container scanning if you're using containerized deployments, as this catches vulnerabilities in your base images and dependencies.",[81,122,124],{"id":123},"_5-leverage-ai-powered-assistance","5. Leverage AI-powered assistance",[12,126,127],{},"Modern DevSecOps platforms are incorporating AI-powered tools that assist teams at every stage of the development lifecycle. AI can analyze code for security vulnerabilities, suggest pipeline optimizations based on your codebase, assist with pipeline configurations, and troubleshoot job failures. Some platforms offer intelligent test selection that runs only relevant tests for code changes, significantly reducing pipeline execution time. This makes it easier for teams to get started quickly and maintain secure, efficient pipelines, even with less CI/CD experience.",[81,129,131],{"id":130},"_6-tailor-tests-to-common-issues","6. Tailor tests to common issues",[12,133,134,135,140,141,145],{},"Most engineering teams that rely on legacy deployment methodologies should be able to easily identify one or two common, recurring issues in deployments. Perhaps copying application code to servers via SCP always results in broken file permissions, or an ",[23,136,139],{"href":137,"rel":138},"https://www.nginx.com",[],"NGINX"," frontend is never properly restarted. For the first iteration of ",[23,142,144],{"href":143},"/blog/want-faster-releases-your-answer-lies-in-automated-software-testing/","automated testing",", choose these specific issues to address with testing. This serves two purposes; it limits the scope of work and gives the team an achievable \"definition of done\", and it provides a highly visible success story by fixing the most problematic existing deployment problems. Once a working pipeline has been deployed and there is organizational buy-in, the testing suite can be expanded.",[81,147,149],{"id":148},"_7-automate-deployment-to-lower-environments","7. Automate deployment to lower environments",[12,151,152],{},"New CI/CD implementations should focus on continuous delivery, automatically deploying to a staging environment, and providing a manual decision interface for deploying to production. Continuous deployment is generally a step that should be taken further in the DevSecOps journey when there is more collective knowledge and technical maturity around automated deployments.",[61,154,155],{},[12,156,157],{},"Tip: Consider implementing environment parity — keeping your staging environment as close to production as possible in terms of configuration, data volumes, and infrastructure. This reduces \"it works in staging but fails in production\" scenarios.",[16,159,161],{"id":160},"get-a-fast-start-with-cicd","Get a fast start with CI/CD",[12,163,164],{},"A good CI/CD implementation can measurably improve software deployment velocity and is a core pillar of a solid DevSecOps strategy. However, the first attempt at utilizing CI/CD should eschew heavy, complex deployments whenever possible, instead focusing on a \"batteries-included\" approach that provides teams with a short time-to-value cycle.",[12,166,167],{},"Once CI/CD provides that quick win, engineering teams can build on that momentum and buy-in to scale the solution across the entire organization, improving deployment speed and outcomes throughout.",[61,169,170],{},[12,171,172,173,178],{},"Get started with CI/CD today with a ",[23,174,177],{"href":175,"rel":176},"https://about.gitlab.com/free-trial/",[],"free trial of GitLab Ultimate with Duo Enterprise",".",{"title":180,"searchDepth":181,"depth":181,"links":182},"",2,[183,184,185,186,196],{"id":18,"depth":181,"text":19},{"id":49,"depth":181,"text":50},{"id":65,"depth":181,"text":66},{"id":72,"depth":181,"text":73,"children":187},[188,190,191,192,193,194,195],{"id":83,"depth":189,"text":84},3,{"id":90,"depth":189,"text":91},{"id":97,"depth":189,"text":98},{"id":104,"depth":189,"text":105},{"id":123,"depth":189,"text":124},{"id":130,"depth":189,"text":131},{"id":148,"depth":189,"text":149},{"id":160,"depth":181,"text":161},"devsecops","2022-04-13","Continuous integration and continuous delivery (CI/CD) are critical to faster software releases and it's less complicated than it seems to get rolling. Here's how to start fast with CI/CD.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1756989645/fojzxakmfdea6jfqjkrl.png",{},true,"/en-us/blog/how-to-learn-ci-cd-fast",{"title":5,"description":199,"ogTitle":5,"ogDescription":199,"noIndex":202,"ogImage":203,"ogUrl":208,"ogSiteName":209,"ogType":210,"canonicalUrls":208},"https://about.gitlab.com/blog/how-to-learn-ci-cd-fast","https://about.gitlab.com","article","how-to-learn-ci-cd-fast","en-us/blog/how-to-learn-ci-cd-fast",[26,214,215],"DevSecOps","collaboration","BlogPost","2025-09-29","iuYhhJfLbJGX7KOyeNCXL73Ue04g33HdKu3WyeL5aZ0",{"logo":220,"freeTrial":225,"sales":230,"login":235,"items":240,"search":566,"minimal":597,"duo":616,"switchNav":625,"pricingDeployment":636},{"config":221},{"href":222,"dataGaName":223,"dataGaLocation":224},"/","gitlab logo","header",{"text":226,"config":227},"Get free trial",{"href":228,"dataGaName":229,"dataGaLocation":224},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":231,"config":232},"Request a demo",{"href":233,"dataGaName":234,"dataGaLocation":224},"/sales/?contact-topic=request-demo","sales",{"text":236,"config":237},"Sign in",{"href":238,"dataGaName":239,"dataGaLocation":224},"https://gitlab.com/users/sign_in/","sign in",[241,270,369,374,488,544],{"text":242,"config":243,"menu":245},"Platform",{"dataNavLevelOne":244},"platform",{"type":246,"columns":247},"cards",[248,254,262],{"title":242,"description":249,"link":250},"The intelligent orchestration platform for DevSecOps",{"text":251,"config":252},"Explore our Platform",{"href":253,"dataGaName":244,"dataGaLocation":224},"/platform/",{"title":255,"description":256,"link":257},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":258,"config":259},"Meet GitLab Duo",{"href":260,"dataGaName":261,"dataGaLocation":224},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":263,"description":264,"link":265},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":266,"config":267},"Learn more",{"href":268,"dataGaName":269,"dataGaLocation":224},"/why-gitlab/","why gitlab",{"text":271,"left":205,"config":272,"menu":274},"Product",{"dataNavLevelOne":273},"solutions",{"type":275,"link":276,"columns":280,"feature":348},"lists",{"text":277,"config":278},"View all Solutions",{"href":279,"dataGaName":273,"dataGaLocation":224},"/solutions/",[281,304,327],{"title":282,"description":283,"link":284,"items":289},"Automation","CI/CD and automation to accelerate deployment",{"config":285},{"icon":286,"href":287,"dataGaName":288,"dataGaLocation":224},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[290,293,296,300],{"text":26,"config":291},{"href":292,"dataGaLocation":224,"dataGaName":26},"/solutions/continuous-integration/",{"text":255,"config":294},{"href":260,"dataGaLocation":224,"dataGaName":295},"gitlab duo agent platform - product menu",{"text":297,"config":298},"Source Code Management",{"href":299,"dataGaLocation":224,"dataGaName":297},"/solutions/source-code-management/",{"text":301,"config":302},"Automated Software Delivery",{"href":287,"dataGaLocation":224,"dataGaName":303},"Automated software delivery",{"title":305,"description":306,"link":307,"items":312},"Security","Deliver code faster without compromising security",{"config":308},{"href":309,"dataGaName":310,"dataGaLocation":224,"icon":311},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[313,317,322],{"text":314,"config":315},"Application Security Testing",{"href":309,"dataGaName":316,"dataGaLocation":224},"Application security testing",{"text":318,"config":319},"Software Supply Chain Security",{"href":320,"dataGaLocation":224,"dataGaName":321},"/solutions/supply-chain/","Software supply chain security",{"text":323,"config":324},"Software Compliance",{"href":325,"dataGaName":326,"dataGaLocation":224},"/solutions/software-compliance/","software compliance",{"title":328,"link":329,"items":334},"Measurement",{"config":330},{"icon":331,"href":332,"dataGaName":333,"dataGaLocation":224},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[335,339,343],{"text":336,"config":337},"Visibility & Measurement",{"href":332,"dataGaLocation":224,"dataGaName":338},"Visibility and Measurement",{"text":340,"config":341},"Value Stream Management",{"href":342,"dataGaLocation":224,"dataGaName":340},"/solutions/value-stream-management/",{"text":344,"config":345},"Analytics & Insights",{"href":346,"dataGaLocation":224,"dataGaName":347},"/solutions/analytics-and-insights/","Analytics and insights",{"title":349,"type":275,"items":350},"GitLab for",[351,357,363],{"text":352,"config":353},"Enterprise",{"icon":354,"href":355,"dataGaLocation":224,"dataGaName":356},"Building","/enterprise/","enterprise",{"text":358,"config":359},"Small Business",{"icon":360,"href":361,"dataGaLocation":224,"dataGaName":362},"Work","/small-business/","small business",{"text":364,"config":365},"Public Sector",{"icon":366,"href":367,"dataGaLocation":224,"dataGaName":368},"Organization","/solutions/public-sector/","public sector",{"text":370,"config":371},"Pricing",{"href":372,"dataGaName":373,"dataGaLocation":224,"dataNavLevelOne":373},"/pricing/","pricing",{"text":375,"config":376,"menu":378},"Resources",{"dataNavLevelOne":377},"resources",{"type":275,"link":379,"columns":383,"feature":477},{"text":380,"config":381},"View all resources",{"href":382,"dataGaName":377,"dataGaLocation":224},"/resources/",[384,417,444],{"title":385,"items":386},"Getting started",[387,392,397,402,407,412],{"text":388,"config":389},"Install",{"href":390,"dataGaName":391,"dataGaLocation":224},"/install/","install",{"text":393,"config":394},"Quick start guides",{"href":395,"dataGaName":396,"dataGaLocation":224},"/get-started/","quick setup checklists",{"text":398,"config":399},"Learn",{"href":400,"dataGaLocation":224,"dataGaName":401},"https://university.gitlab.com/","learn",{"text":403,"config":404},"Product documentation",{"href":405,"dataGaName":406,"dataGaLocation":224},"https://docs.gitlab.com/","product documentation",{"text":408,"config":409},"Best practice videos",{"href":410,"dataGaName":411,"dataGaLocation":224},"/getting-started-videos/","best practice videos",{"text":413,"config":414},"Integrations",{"href":415,"dataGaName":416,"dataGaLocation":224},"/integrations/","integrations",{"title":418,"items":419},"Discover",[420,425,430,435,439],{"text":421,"config":422},"Customer success stories",{"href":423,"dataGaName":424,"dataGaLocation":224},"/customers/","customer success stories",{"text":426,"config":427},"Blog",{"href":428,"dataGaName":429,"dataGaLocation":224},"/blog/","blog",{"text":431,"config":432},"Demo Hub",{"href":433,"dataGaName":434,"dataGaLocation":224},"/demo-hub/","demo hub",{"text":436,"config":437},"The Source",{"href":438,"dataGaName":429,"dataGaLocation":224},"/the-source/",{"text":440,"config":441},"Remote",{"href":442,"dataGaName":443,"dataGaLocation":224},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":445,"items":446},"Connect",[447,452,457,462,467,472],{"text":448,"config":449},"GitLab Services",{"href":450,"dataGaName":451,"dataGaLocation":224},"/services/","services",{"text":453,"config":454},"Contribute",{"href":455,"dataGaName":456,"dataGaLocation":224},"https://contributors.gitlab.com","contribute",{"text":458,"config":459},"Community",{"href":460,"dataGaName":461,"dataGaLocation":224},"/community/","community",{"text":463,"config":464},"Forum",{"href":465,"dataGaName":466,"dataGaLocation":224},"https://forum.gitlab.com/","forum",{"text":468,"config":469},"Events",{"href":470,"dataGaName":471,"dataGaLocation":224},"/events/","events",{"text":473,"config":474},"Partners",{"href":475,"dataGaName":476,"dataGaLocation":224},"/partners/","partners",{"config":478,"title":481,"text":482,"link":483},{"background":479,"textColor":480},"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":484,"config":485},"Read the latest",{"href":486,"dataGaName":487,"dataGaLocation":224},"/whats-new/","whats new",{"text":489,"config":490,"menu":492},"Company",{"dataNavLevelOne":491},"company",{"type":275,"columns":493},[494],{"items":495},[496,501,507,509,514,519,524,529,534,539],{"text":497,"config":498},"About",{"href":499,"dataGaName":500,"dataGaLocation":224},"/company/","about",{"text":502,"config":503,"footerGa":506},"Jobs",{"href":504,"dataGaName":505,"dataGaLocation":224},"/jobs/","jobs",{"dataGaName":505},{"text":468,"config":508},{"href":470,"dataGaName":471,"dataGaLocation":224},{"text":510,"config":511},"Leadership",{"href":512,"dataGaName":513,"dataGaLocation":224},"/company/team/e-group/","leadership",{"text":515,"config":516},"Handbook",{"href":517,"dataGaName":518,"dataGaLocation":224},"https://handbook.gitlab.com/","handbook",{"text":520,"config":521},"Investor relations",{"href":522,"dataGaName":523,"dataGaLocation":224},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":525,"config":526},"Trust Center",{"href":527,"dataGaName":528,"dataGaLocation":224},"/security/","trust center",{"text":530,"config":531},"AI Transparency Center",{"href":532,"dataGaName":533,"dataGaLocation":224},"/ai-transparency-center/","ai transparency center",{"text":535,"config":536},"Newsletter",{"href":537,"dataGaName":538,"dataGaLocation":224},"/company/contact/#contact-forms","newsletter",{"text":540,"config":541},"Press",{"href":542,"dataGaName":543,"dataGaLocation":224},"/press/","press",{"text":545,"config":546,"menu":547},"Contact us",{"dataNavLevelOne":491},{"type":275,"columns":548},[549],{"items":550},[551,556,561],{"text":552,"config":553},"Talk to sales",{"href":554,"dataGaName":555,"dataGaLocation":224},"/sales/","talk to sales",{"text":557,"config":558},"Support portal",{"href":559,"dataGaName":560,"dataGaLocation":224},"https://support.gitlab.com/hc/en-us","support portal",{"text":562,"config":563},"Customer portal",{"href":564,"dataGaName":565,"dataGaLocation":224},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":567,"login":568,"suggestions":575},"Close",{"text":569,"link":570},"To search repositories and projects, login to",{"text":571,"config":572},"gitlab.com",{"href":238,"dataGaName":573,"dataGaLocation":574},"search login","search",{"text":576,"default":577},"Suggestions",[578,580,584,586,590,594],{"text":255,"config":579},{"href":260,"dataGaName":255,"dataGaLocation":574},{"text":581,"config":582},"Code Suggestions (AI)",{"href":583,"dataGaName":581,"dataGaLocation":574},"/solutions/code-suggestions/",{"text":26,"config":585},{"href":292,"dataGaName":26,"dataGaLocation":574},{"text":587,"config":588},"GitLab on AWS",{"href":589,"dataGaName":587,"dataGaLocation":574},"/partners/technology-partners/aws/",{"text":591,"config":592},"GitLab on Google Cloud",{"href":593,"dataGaName":591,"dataGaLocation":574},"/partners/technology-partners/google-cloud-platform/",{"text":595,"config":596},"Why GitLab?",{"href":268,"dataGaName":595,"dataGaLocation":574},{"freeTrial":598,"mobileIcon":603,"desktopIcon":608,"secondaryButton":611},{"text":599,"config":600},"Start free trial",{"href":601,"dataGaName":229,"dataGaLocation":602},"https://gitlab.com/-/trials/new/","nav",{"altText":604,"config":605},"Gitlab Icon",{"src":606,"dataGaName":607,"dataGaLocation":602},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":604,"config":609},{"src":610,"dataGaName":607,"dataGaLocation":602},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":612,"config":613},"Get Started",{"href":614,"dataGaName":615,"dataGaLocation":602},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":617,"mobileIcon":621,"desktopIcon":623},{"text":618,"config":619},"Learn more about GitLab Duo",{"href":260,"dataGaName":620,"dataGaLocation":602},"gitlab duo",{"altText":604,"config":622},{"src":606,"dataGaName":607,"dataGaLocation":602},{"altText":604,"config":624},{"src":610,"dataGaName":607,"dataGaLocation":602},{"button":626,"mobileIcon":631,"desktopIcon":633},{"text":627,"config":628},"/switch",{"href":629,"dataGaName":630,"dataGaLocation":602},"#contact","switch",{"altText":604,"config":632},{"src":606,"dataGaName":607,"dataGaLocation":602},{"altText":604,"config":634},{"src":635,"dataGaName":607,"dataGaLocation":602},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":637,"mobileIcon":642,"desktopIcon":644},{"text":638,"config":639},"Back to pricing",{"href":372,"dataGaName":640,"dataGaLocation":602,"icon":641},"back to pricing","GoBack",{"altText":604,"config":643},{"src":606,"dataGaName":607,"dataGaLocation":602},{"altText":604,"config":645},{"src":610,"dataGaName":607,"dataGaLocation":602},{"title":647,"titleMobile":648,"button":649,"config":654},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":266,"config":650},{"href":651,"dataGaName":652,"dataGaLocation":653},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":655,"disabled":202},"release",{"data":657},{"text":658,"source":659,"edit":665,"contribute":670,"config":675,"items":680,"minimal":887},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":660,"config":661},"View page source",{"href":662,"dataGaName":663,"dataGaLocation":664},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":666,"config":667},"Edit this page",{"href":668,"dataGaName":669,"dataGaLocation":664},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":671,"config":672},"Please contribute",{"href":673,"dataGaName":674,"dataGaLocation":664},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":676,"facebook":677,"youtube":678,"linkedin":679},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[681,728,779,823,855],{"title":370,"links":682,"subMenu":697},[683,687,692],{"text":684,"config":685},"View plans",{"href":372,"dataGaName":686,"dataGaLocation":664},"view plans",{"text":688,"config":689},"Why Premium?",{"href":690,"dataGaName":691,"dataGaLocation":664},"/pricing/premium/","why premium",{"text":693,"config":694},"Why Ultimate?",{"href":695,"dataGaName":696,"dataGaLocation":664},"/pricing/ultimate/","why ultimate",[698],{"title":699,"links":700},"Contact Us",[701,704,706,708,713,718,723],{"text":702,"config":703},"Contact sales",{"href":554,"dataGaName":234,"dataGaLocation":664},{"text":557,"config":705},{"href":559,"dataGaName":560,"dataGaLocation":664},{"text":562,"config":707},{"href":564,"dataGaName":565,"dataGaLocation":664},{"text":709,"config":710},"Status",{"href":711,"dataGaName":712,"dataGaLocation":664},"https://status.gitlab.com/","status",{"text":714,"config":715},"Terms of use",{"href":716,"dataGaName":717,"dataGaLocation":664},"/terms/","terms of use",{"text":719,"config":720},"Privacy statement",{"href":721,"dataGaName":722,"dataGaLocation":664},"/privacy/","privacy statement",{"text":724,"config":725},"Cookie preferences",{"dataGaName":726,"dataGaLocation":664,"id":727,"isOneTrustButton":205},"cookie preferences","ot-sdk-btn",{"title":271,"links":729,"subMenu":738},[730,734],{"text":731,"config":732},"DevSecOps platform",{"href":253,"dataGaName":733,"dataGaLocation":664},"devsecops platform",{"text":735,"config":736},"AI-Assisted Development",{"href":260,"dataGaName":737,"dataGaLocation":664},"ai-assisted development",[739],{"title":740,"links":741},"Topics",[742,746,751,756,761,764,769,774],{"text":743,"config":744},"CICD",{"href":25,"dataGaName":745,"dataGaLocation":664},"cicd",{"text":747,"config":748},"GitOps",{"href":749,"dataGaName":750,"dataGaLocation":664},"/topics/gitops/","gitops",{"text":752,"config":753},"DevOps",{"href":754,"dataGaName":755,"dataGaLocation":664},"/topics/devops/","devops",{"text":757,"config":758},"Version Control",{"href":759,"dataGaName":760,"dataGaLocation":664},"/topics/version-control/","version control",{"text":214,"config":762},{"href":763,"dataGaName":197,"dataGaLocation":664},"/topics/devsecops/",{"text":765,"config":766},"Cloud Native",{"href":767,"dataGaName":768,"dataGaLocation":664},"/topics/cloud-native/","cloud native",{"text":770,"config":771},"AI for Coding",{"href":772,"dataGaName":773,"dataGaLocation":664},"/topics/devops/ai-for-coding/","ai for coding",{"text":775,"config":776},"Agentic AI",{"href":777,"dataGaName":778,"dataGaLocation":664},"/topics/agentic-ai/","agentic ai",{"title":780,"links":781},"Solutions",[782,784,786,791,795,798,802,805,807,810,813,818],{"text":314,"config":783},{"href":309,"dataGaName":314,"dataGaLocation":664},{"text":303,"config":785},{"href":287,"dataGaName":288,"dataGaLocation":664},{"text":787,"config":788},"Agile development",{"href":789,"dataGaName":790,"dataGaLocation":664},"/solutions/agile-delivery/","agile delivery",{"text":792,"config":793},"SCM",{"href":299,"dataGaName":794,"dataGaLocation":664},"source code management",{"text":743,"config":796},{"href":292,"dataGaName":797,"dataGaLocation":664},"continuous integration & delivery",{"text":799,"config":800},"Value stream management",{"href":342,"dataGaName":801,"dataGaLocation":664},"value stream management",{"text":747,"config":803},{"href":804,"dataGaName":750,"dataGaLocation":664},"/solutions/gitops/",{"text":352,"config":806},{"href":355,"dataGaName":356,"dataGaLocation":664},{"text":808,"config":809},"Small business",{"href":361,"dataGaName":362,"dataGaLocation":664},{"text":811,"config":812},"Public sector",{"href":367,"dataGaName":368,"dataGaLocation":664},{"text":814,"config":815},"Education",{"href":816,"dataGaName":817,"dataGaLocation":664},"/solutions/education/","education",{"text":819,"config":820},"Financial services",{"href":821,"dataGaName":822,"dataGaLocation":664},"/solutions/finance/","financial services",{"title":375,"links":824},[825,827,829,831,834,836,839,841,843,845,847,849,851,853],{"text":388,"config":826},{"href":390,"dataGaName":391,"dataGaLocation":664},{"text":393,"config":828},{"href":395,"dataGaName":396,"dataGaLocation":664},{"text":398,"config":830},{"href":400,"dataGaName":401,"dataGaLocation":664},{"text":403,"config":832},{"href":405,"dataGaName":833,"dataGaLocation":664},"docs",{"text":426,"config":835},{"href":428,"dataGaName":429,"dataGaLocation":664},{"text":837,"config":838},"What's new",{"href":486,"dataGaName":487,"dataGaLocation":664},{"text":421,"config":840},{"href":423,"dataGaName":424,"dataGaLocation":664},{"text":440,"config":842},{"href":442,"dataGaName":443,"dataGaLocation":664},{"text":448,"config":844},{"href":450,"dataGaName":451,"dataGaLocation":664},{"text":453,"config":846},{"href":455,"dataGaName":456,"dataGaLocation":664},{"text":458,"config":848},{"href":460,"dataGaName":461,"dataGaLocation":664},{"text":463,"config":850},{"href":465,"dataGaName":466,"dataGaLocation":664},{"text":468,"config":852},{"href":470,"dataGaName":471,"dataGaLocation":664},{"text":473,"config":854},{"href":475,"dataGaName":476,"dataGaLocation":664},{"title":489,"links":856},[857,859,861,863,865,867,871,876,878,880,882],{"text":497,"config":858},{"href":499,"dataGaName":491,"dataGaLocation":664},{"text":502,"config":860},{"href":504,"dataGaName":505,"dataGaLocation":664},{"text":510,"config":862},{"href":512,"dataGaName":513,"dataGaLocation":664},{"text":515,"config":864},{"href":517,"dataGaName":518,"dataGaLocation":664},{"text":520,"config":866},{"href":522,"dataGaName":523,"dataGaLocation":664},{"text":868,"config":869},"Sustainability",{"href":870,"dataGaName":868,"dataGaLocation":664},"/sustainability/",{"text":872,"config":873},"Diversity, inclusion and belonging (DIB)",{"href":874,"dataGaName":875,"dataGaLocation":664},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":525,"config":877},{"href":527,"dataGaName":528,"dataGaLocation":664},{"text":535,"config":879},{"href":537,"dataGaName":538,"dataGaLocation":664},{"text":540,"config":881},{"href":542,"dataGaName":543,"dataGaLocation":664},{"text":883,"config":884},"Modern Slavery Transparency Statement",{"href":885,"dataGaName":886,"dataGaLocation":664},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":888},[889,892,895],{"text":890,"config":891},"Terms",{"href":716,"dataGaName":717,"dataGaLocation":664},{"text":893,"config":894},"Cookies",{"dataGaName":726,"dataGaLocation":664,"id":727,"isOneTrustButton":205},{"text":896,"config":897},"Privacy",{"href":721,"dataGaName":722,"dataGaLocation":664},[899],{"id":900,"title":7,"body":201,"config":901,"content":903,"description":201,"extension":907,"meta":908,"navigation":205,"path":909,"seo":910,"stem":911,"__hash__":912},"blogAuthors/en-us/blog/authors/itzik-gan-baruch.yml",{"template":902},"BlogAuthor",{"name":7,"config":904},{"headshot":905,"ctfId":906},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658921/Blog/Author%20Headshots/iganbaruch-headshot.jpg","iganbaruch","yml",{},"/en-us/blog/authors/itzik-gan-baruch",{},"en-us/blog/authors/itzik-gan-baruch","bz9VMiTQ1ixvnoxUFk0jiUcnLG3oQsymgXNCqyRqfsk",[914,922,930],{"title":915,"description":916,"heroImage":917,"category":197,"date":918,"authors":919,"slug":921,"externalUrl":201},"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",[920],"Olivier Campeau","gitaly-on-kubernetes-generally-available",{"title":923,"description":924,"heroImage":925,"category":197,"date":926,"authors":927,"slug":929,"externalUrl":201},"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",[928],"Rod Burns","teaching-software-development-the-easy-way-using-gitlab",{"title":931,"description":932,"heroImage":933,"category":197,"date":934,"authors":935,"slug":937,"externalUrl":201},"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",[936],"Manav Khurana","ai-is-reshaping-devsecops-attend-gitlab-transcend-to-see-whats-next",{"promotions":939},[940,954,966,978],{"id":941,"categories":942,"header":944,"text":945,"button":946,"image":951},"ai-modernization",[943],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":947,"config":948},"Get your AI maturity score",{"href":949,"dataGaName":950,"dataGaLocation":429},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":952},{"src":953},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":955,"categories":956,"header":958,"text":945,"button":959,"image":963},"devops-modernization",[957,197],"product","Are you just managing tools or shipping innovation?",{"text":960,"config":961},"Get your DevOps maturity score",{"href":962,"dataGaName":950,"dataGaLocation":429},"/assessments/devops-modernization-assessment/",{"config":964},{"src":965},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":967,"categories":968,"header":970,"text":945,"button":971,"image":975},"security-modernization",[969],"security","Are you trading speed for security?",{"text":972,"config":973},"Get your security maturity score",{"href":974,"dataGaName":950,"dataGaLocation":429},"/assessments/security-modernization-assessment/",{"config":976},{"src":977},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":979,"paths":980,"header":983,"text":984,"button":985,"image":990},"github-azure-migration",[981,982],"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":986,"config":987},"See how GitLab compares to GitHub",{"href":988,"dataGaName":989,"dataGaLocation":429},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":991},{"src":965},{"header":993,"blurb":994,"button":995,"secondaryButton":1000},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":996,"config":997},"Get your free trial",{"href":998,"dataGaName":229,"dataGaLocation":999},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":702,"config":1001},{"href":554,"dataGaName":234,"dataGaLocation":999},1786803762366]