[{"data":1,"prerenderedAt":1111},["ShallowReactive",2],{"/blog/optimize-gitlab-object-storage-for-scale-and-performance":3,"navigation-en-us":331,"banner-en-us":759,"footer-en-us":769,"blog-post-authors-en-us-Tim Rizzi":1014,"blog-related-posts-en-us-optimize-gitlab-object-storage-for-scale-and-performance":1029,"blog-promotions-en-us":1048,"next-steps-en-us":1101},{"id":4,"title":5,"authors":6,"body":8,"category":312,"date":313,"description":314,"extension":315,"externalUrl":316,"faq":316,"featured":317,"heroImage":318,"meta":319,"navigation":320,"path":321,"seo":322,"slug":324,"stem":325,"tags":326,"template":329,"updatedDate":316,"__hash__":330},"blogPosts/en-us/blog/optimize-gitlab-object-storage-for-scale-and-performance.md","Optimize GitLab object storage for scale and performance",[7],"Tim Rizzi",{"type":9,"value":10,"toc":301},"minimark",[11,15,20,23,36,43,47,58,65,74,78,84,91,97,103,109,113,116,122,129,133,136,170,174,237,241,277,281],[12,13,14],"p",{},"Managing GitLab at scale requires strategic object storage configuration.\nHere's how to configure object storage for maximum performance, security, and reliability across your GitLab components.",[16,17,19],"h2",{"id":18},"use-consolidated-form-for-gitlab-components","Use consolidated form for GitLab components",[12,21,22],{},"For artifacts, LFS, uploads, packages, and other GitLab data, eliminate credential duplication with the consolidated form:",[24,25,32],"pre",{"className":26,"code":28,"filename":29,"language":30,"meta":31},[27],"language-text","gitlab_rails['object_store']['connection'] = {\n  'provider' => 'AWS',\n  'region' => 'us-east-1',\n  'use_iam_profile' => true\n}\ngitlab_rails['object_store']['objects']['artifacts']['bucket'] = 'gitlab-artifacts'\ngitlab_rails['object_store']['objects']['lfs']['bucket'] = 'gitlab-lfs'\n# ... additional buckets for each object type\n``` This reduces complexity while enabling encrypted S3 buckets and proper Content-MD5 headers.\n## Configure container registry separately\nThe container registry requires its own configuration since it doesn't support the consolidated form:\n```text registry['storage'] = {\n  's3_v2' => {  # Use the new v2 driver\n    'bucket' => 'gitlab-registry',\n    'region' => 'us-east-1',\n    # Omit access keys to use IAM roles\n  }\n}\n","'object_store']['enabled'","text","gitlab_rails = true",[33,34,28],"code",{"__ignoreMap":35},"",[12,37,38,42],{},[39,40,41],"strong",{},"Note:"," The s3_v1 driver is deprecated and will be removed in GitLab 19.0. Migrate to s3_v2 for better performance and reliability.",[16,44,46],{"id":45},"disable-proxy-download-for-performance","Disable proxy download for performance",[12,48,49,50,53,54,57],{},"Set ",[33,51,52],{},"proxy_download"," to ",[39,55,56],{},"false"," (default) for direct downloads:",[24,59,63],{"className":60,"code":61,"language":30,"meta":62},[27],"gitlab_rails['object_store']['proxy_download'] = false\n# Or configure per bucket for granular control\ngitlab_rails['object_store']['objects']['artifacts']['proxy_download'] = false\ngitlab_rails['object_store']['objects']['lfs']['proxy_download'] = false\ngitlab_rails['object_store']['objects']['uploads']['proxy_download'] = true  # Example: keep proxy for uploads\n# Container registry defaults to redirect mode (direct downloads)\n# Only disable if your environment requires it:\nregistry['storage']['redirect']['disable'] = false  # Keep as false\n","# For GitLab objects - can be set globally",[33,64,61],{"__ignoreMap":35},[12,66,67,70,71,73],{},[39,68,69],{},"Important:"," The ",[33,72,52],{}," option can be configured globally at the object-store level or individually per bucket. This gives you flexibility to optimize based on your specific use case — for example, you might want direct downloads for large artifacts and LFS files, but proxy smaller uploads through GitLab for additional security controls.\nThis dramatically reduces server load and egress costs by letting clients download directly from object storage.",[16,75,77],{"id":76},"choose-identity-based-authentication","Choose identity-based authentication",[12,79,80,83],{},[39,81,82],{},"AWS:"," Use IAM roles instead of access keys:",[24,85,89],{"className":86,"code":87,"language":30,"meta":88},[27],"gitlab_rails['object_store']['connection'] = {\n  'provider' => 'AWS',\n  'use_iam_profile' => true\n}\n# Container registry\nregistry['storage'] = {\n  's3_v2' => {\n    'bucket' => 'gitlab-registry',\n    'region' => 'us-east-1'\n    # No access keys = IAM role authentication\n  }\n}\n","# GitLab objects",[33,90,87],{"__ignoreMap":35},[12,92,93,96],{},[39,94,95],{},"Google Cloud Platform:"," Enable application default credentials:",[24,98,101],{"className":99,"code":100,"language":30,"meta":35},[27],"gitlab_rails['object_store']['connection'] = {\n  'provider' => 'Google',\n  'google_application_default' => true\n}\n",[33,102,100],{"__ignoreMap":35},[12,104,105,108],{},[39,106,107],{},"Azure:"," Use workload identities by omitting storage access keys.",[16,110,112],{"id":111},"add-encryption-layers","Add encryption layers",[12,114,115],{},"Enable server-side encryption for additional security:",[24,117,120],{"className":118,"code":119,"language":30,"meta":88},[27],"gitlab_rails['object_store']['storage_options'] = {\n  'server_side_encryption' => 'AES256'\n}\n# Container registry\nregistry['storage'] = {\n  's3_v2' => {\n    'bucket' => 'gitlab-registry',\n    'encrypt' => true\n  }\n}\n",[33,121,119],{"__ignoreMap":35},[12,123,124,125,128],{},"For AWS KMS encryption, specify the key ARN in ",[33,126,127],{},"server_side_encryption_kms_key_id",".",[16,130,132],{"id":131},"use-separate-buckets-for-organization","Use separate buckets for organization",[12,134,135],{},"Create dedicated buckets for each component:",[137,138,139,146,152,158,164],"ul",{},[140,141,142,145],"li",{},[39,143,144],{},"gitlab-artifacts"," - CI/CD job artifacts",[140,147,148,151],{},[39,149,150],{},"gitlab-lfs"," - Git LFS objects",[140,153,154,157],{},[39,155,156],{},"gitlab-uploads"," - User uploads",[140,159,160,163],{},[39,161,162],{},"gitlab-packages"," - Package registry",[140,165,166,169],{},[39,167,168],{},"gitlab-registry"," - Container images\nThis isolation improves security, enables granular access controls, and simplifies cost tracking.",[16,171,173],{"id":172},"key-configuration-differences","Key configuration differences",[175,176,177,199],"table",{},[178,179,180],"thead",{},[181,182,183,187,190,193,196],"tr",{},[184,185,186],"th",{},"Component",[184,188,189],{},"Consolidated Form",[184,191,192],{},"Identity Auth",[184,194,195],{},"Encryption",[184,197,198],{},"Direct Downloads",[200,201,202,220],"tbody",{},[181,203,204,208,211,214,217],{},[205,206,207],"td",{},"Artifacts, LFS, Packages",[205,209,210],{},"✅ Supported",[205,212,213],{},"✅ use_iam_profile",[205,215,216],{},"✅ storage_options",[205,218,219],{},"✅ proxy_download: false",[181,221,222,225,228,231,234],{},[205,223,224],{},"Container Registry",[205,226,227],{},"❌ Separate config",[205,229,230],{},"✅ Omit access keys",[205,232,233],{},"✅ encrypt: true",[205,235,236],{},"✅ redirect enabled by default",[16,238,240],{"id":239},"migration-path","Migration path",[242,243,244,250,256,262,271],"ol",{},[140,245,246,249],{},[39,247,248],{},"Start with GitLab objects:"," Use the consolidated form for immediate complexity reduction.",[140,251,252,255],{},[39,253,254],{},"Configure registry separately:"," Use s3_v2 driver with IAM authentication.",[140,257,258,261],{},[39,259,260],{},"Enable encryption:"," Add server-side encryption for both components.",[140,263,264,267,268,270],{},[39,265,266],{},"Optimize performance:"," Ensure direct downloads are enabled with appropriate ",[33,269,52],{}," settings.",[140,272,273,276],{},[39,274,275],{},"Set up lifecycle policies:"," Configure S3 lifecycle rules to clean up incomplete multipart uploads.",[16,278,280],{"id":279},"additional-resources","Additional resources",[12,282,283,284,290,291,296,297],{},"For a complete AWS S3 configuration example, see the ",[285,286,289],"a",{"href":287,"rel":288},"https://docs.gitlab.com/administration/object_storage/#aws-s3",[],"GitLab documentation on AWS S3 object storage setup",".\nFor more details on configuring proxy_download parameters per bucket, refer to the ",[285,292,295],{"href":293,"rel":294},"https://docs.gitlab.com/administration/object_storage/#configure-the-parameters-of-each-object",[],"GitLab object storage configuration documentation",".\n",[298,299,300],"em",{},"These configurations will scale with your growth while maintaining security and performance. The separation between GitLab object storage and container registry configurations reflects their different underlying architectures, but both benefit from the same optimization principles.",{"title":35,"searchDepth":302,"depth":302,"links":303},2,[304,305,306,307,308,309,310,311],{"id":18,"depth":302,"text":19},{"id":45,"depth":302,"text":46},{"id":76,"depth":302,"text":77},{"id":111,"depth":302,"text":112},{"id":131,"depth":302,"text":132},{"id":172,"depth":302,"text":173},{"id":239,"depth":302,"text":240},{"id":279,"depth":302,"text":280},"product","2025-10-08","Configure GitLab object storage for maximum performance and cost savings. Learn consolidated forms, direct downloads, and identity-based authentication.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749665151/Blog/Hero%20Images/blog-image-template-1800x945__27_.png",{},true,"/en-us/blog/optimize-gitlab-object-storage-for-scale-and-performance",{"config":323,"title":5,"description":314},{"noIndex":317},"optimize-gitlab-object-storage-for-scale-and-performance","en-us/blog/optimize-gitlab-object-storage-for-scale-and-performance",[312,327,328],"tutorial","features","BlogPost","izkH98r07_6J1rM3bTWJulblrwIGi7WXtA9HfFmZliQ",{"logo":332,"freeTrial":337,"sales":342,"login":347,"items":352,"search":679,"minimal":710,"duo":729,"switchNav":738,"pricingDeployment":749},{"config":333},{"href":334,"dataGaName":335,"dataGaLocation":336},"/","gitlab logo","header",{"text":338,"config":339},"Get free trial",{"href":340,"dataGaName":341,"dataGaLocation":336},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":343,"config":344},"Request a demo",{"href":345,"dataGaName":346,"dataGaLocation":336},"/sales/?contact-topic=request-demo","sales",{"text":348,"config":349},"Sign in",{"href":350,"dataGaName":351,"dataGaLocation":336},"https://gitlab.com/users/sign_in/","sign in",[353,382,482,487,601,657],{"text":354,"config":355,"menu":357},"Platform",{"dataNavLevelOne":356},"platform",{"type":358,"columns":359},"cards",[360,366,374],{"title":354,"description":361,"link":362},"The intelligent orchestration platform for DevSecOps",{"text":363,"config":364},"Explore our Platform",{"href":365,"dataGaName":356,"dataGaLocation":336},"/platform/",{"title":367,"description":368,"link":369},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":370,"config":371},"Meet GitLab Duo",{"href":372,"dataGaName":373,"dataGaLocation":336},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":375,"description":376,"link":377},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":378,"config":379},"Learn more",{"href":380,"dataGaName":381,"dataGaLocation":336},"/why-gitlab/","why gitlab",{"text":383,"left":320,"config":384,"menu":386},"Product",{"dataNavLevelOne":385},"solutions",{"type":387,"link":388,"columns":392,"feature":461},"lists",{"text":389,"config":390},"View all Solutions",{"href":391,"dataGaName":385,"dataGaLocation":336},"/solutions/",[393,417,440],{"title":394,"description":395,"link":396,"items":401},"Automation","CI/CD and automation to accelerate deployment",{"config":397},{"icon":398,"href":399,"dataGaName":400,"dataGaLocation":336},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[402,406,409,413],{"text":403,"config":404},"CI/CD",{"href":405,"dataGaLocation":336,"dataGaName":403},"/solutions/continuous-integration/",{"text":367,"config":407},{"href":372,"dataGaLocation":336,"dataGaName":408},"gitlab duo agent platform - product menu",{"text":410,"config":411},"Source Code Management",{"href":412,"dataGaLocation":336,"dataGaName":410},"/solutions/source-code-management/",{"text":414,"config":415},"Automated Software Delivery",{"href":399,"dataGaLocation":336,"dataGaName":416},"Automated software delivery",{"title":418,"description":419,"link":420,"items":425},"Security","Deliver code faster without compromising security",{"config":421},{"href":422,"dataGaName":423,"dataGaLocation":336,"icon":424},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[426,430,435],{"text":427,"config":428},"Application Security Testing",{"href":422,"dataGaName":429,"dataGaLocation":336},"Application security testing",{"text":431,"config":432},"Software Supply Chain Security",{"href":433,"dataGaLocation":336,"dataGaName":434},"/solutions/supply-chain/","Software supply chain security",{"text":436,"config":437},"Software Compliance",{"href":438,"dataGaName":439,"dataGaLocation":336},"/solutions/software-compliance/","software compliance",{"title":441,"link":442,"items":447},"Measurement",{"config":443},{"icon":444,"href":445,"dataGaName":446,"dataGaLocation":336},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[448,452,456],{"text":449,"config":450},"Visibility & Measurement",{"href":445,"dataGaLocation":336,"dataGaName":451},"Visibility and Measurement",{"text":453,"config":454},"Value Stream Management",{"href":455,"dataGaLocation":336,"dataGaName":453},"/solutions/value-stream-management/",{"text":457,"config":458},"Analytics & Insights",{"href":459,"dataGaLocation":336,"dataGaName":460},"/solutions/analytics-and-insights/","Analytics and insights",{"title":462,"type":387,"items":463},"GitLab for",[464,470,476],{"text":465,"config":466},"Enterprise",{"icon":467,"href":468,"dataGaLocation":336,"dataGaName":469},"Building","/enterprise/","enterprise",{"text":471,"config":472},"Small Business",{"icon":473,"href":474,"dataGaLocation":336,"dataGaName":475},"Work","/small-business/","small business",{"text":477,"config":478},"Public Sector",{"icon":479,"href":480,"dataGaLocation":336,"dataGaName":481},"Organization","/solutions/public-sector/","public sector",{"text":483,"config":484},"Pricing",{"href":485,"dataGaName":486,"dataGaLocation":336,"dataNavLevelOne":486},"/pricing/","pricing",{"text":488,"config":489,"menu":491},"Resources",{"dataNavLevelOne":490},"resources",{"type":387,"link":492,"columns":496,"feature":590},{"text":493,"config":494},"View all resources",{"href":495,"dataGaName":490,"dataGaLocation":336},"/resources/",[497,530,557],{"title":498,"items":499},"Getting started",[500,505,510,515,520,525],{"text":501,"config":502},"Install",{"href":503,"dataGaName":504,"dataGaLocation":336},"/install/","install",{"text":506,"config":507},"Quick start guides",{"href":508,"dataGaName":509,"dataGaLocation":336},"/get-started/","quick setup checklists",{"text":511,"config":512},"Learn",{"href":513,"dataGaLocation":336,"dataGaName":514},"https://university.gitlab.com/","learn",{"text":516,"config":517},"Product documentation",{"href":518,"dataGaName":519,"dataGaLocation":336},"https://docs.gitlab.com/","product documentation",{"text":521,"config":522},"Best practice videos",{"href":523,"dataGaName":524,"dataGaLocation":336},"/getting-started-videos/","best practice videos",{"text":526,"config":527},"Integrations",{"href":528,"dataGaName":529,"dataGaLocation":336},"/integrations/","integrations",{"title":531,"items":532},"Discover",[533,538,543,548,552],{"text":534,"config":535},"Customer success stories",{"href":536,"dataGaName":537,"dataGaLocation":336},"/customers/","customer success stories",{"text":539,"config":540},"Blog",{"href":541,"dataGaName":542,"dataGaLocation":336},"/blog/","blog",{"text":544,"config":545},"Demo Hub",{"href":546,"dataGaName":547,"dataGaLocation":336},"/demo-hub/","demo hub",{"text":549,"config":550},"The Source",{"href":551,"dataGaName":542,"dataGaLocation":336},"/the-source/",{"text":553,"config":554},"Remote",{"href":555,"dataGaName":556,"dataGaLocation":336},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":558,"items":559},"Connect",[560,565,570,575,580,585],{"text":561,"config":562},"GitLab Services",{"href":563,"dataGaName":564,"dataGaLocation":336},"/services/","services",{"text":566,"config":567},"Contribute",{"href":568,"dataGaName":569,"dataGaLocation":336},"https://contributors.gitlab.com","contribute",{"text":571,"config":572},"Community",{"href":573,"dataGaName":574,"dataGaLocation":336},"/community/","community",{"text":576,"config":577},"Forum",{"href":578,"dataGaName":579,"dataGaLocation":336},"https://forum.gitlab.com/","forum",{"text":581,"config":582},"Events",{"href":583,"dataGaName":584,"dataGaLocation":336},"/events/","events",{"text":586,"config":587},"Partners",{"href":588,"dataGaName":589,"dataGaLocation":336},"/partners/","partners",{"config":591,"title":594,"text":595,"link":596},{"background":592,"textColor":593},"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":597,"config":598},"Read the latest",{"href":599,"dataGaName":600,"dataGaLocation":336},"/whats-new/","whats new",{"text":602,"config":603,"menu":605},"Company",{"dataNavLevelOne":604},"company",{"type":387,"columns":606},[607],{"items":608},[609,614,620,622,627,632,637,642,647,652],{"text":610,"config":611},"About",{"href":612,"dataGaName":613,"dataGaLocation":336},"/company/","about",{"text":615,"config":616,"footerGa":619},"Jobs",{"href":617,"dataGaName":618,"dataGaLocation":336},"/jobs/","jobs",{"dataGaName":618},{"text":581,"config":621},{"href":583,"dataGaName":584,"dataGaLocation":336},{"text":623,"config":624},"Leadership",{"href":625,"dataGaName":626,"dataGaLocation":336},"/company/team/e-group/","leadership",{"text":628,"config":629},"Handbook",{"href":630,"dataGaName":631,"dataGaLocation":336},"https://handbook.gitlab.com/","handbook",{"text":633,"config":634},"Investor relations",{"href":635,"dataGaName":636,"dataGaLocation":336},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":638,"config":639},"Trust Center",{"href":640,"dataGaName":641,"dataGaLocation":336},"/security/","trust center",{"text":643,"config":644},"AI Transparency Center",{"href":645,"dataGaName":646,"dataGaLocation":336},"/ai-transparency-center/","ai transparency center",{"text":648,"config":649},"Newsletter",{"href":650,"dataGaName":651,"dataGaLocation":336},"/company/contact/#contact-forms","newsletter",{"text":653,"config":654},"Press",{"href":655,"dataGaName":656,"dataGaLocation":336},"/press/","press",{"text":658,"config":659,"menu":660},"Contact us",{"dataNavLevelOne":604},{"type":387,"columns":661},[662],{"items":663},[664,669,674],{"text":665,"config":666},"Talk to sales",{"href":667,"dataGaName":668,"dataGaLocation":336},"/sales/","talk to sales",{"text":670,"config":671},"Support portal",{"href":672,"dataGaName":673,"dataGaLocation":336},"https://support.gitlab.com/hc/en-us","support portal",{"text":675,"config":676},"Customer portal",{"href":677,"dataGaName":678,"dataGaLocation":336},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":680,"login":681,"suggestions":688},"Close",{"text":682,"link":683},"To search repositories and projects, login to",{"text":684,"config":685},"gitlab.com",{"href":350,"dataGaName":686,"dataGaLocation":687},"search login","search",{"text":689,"default":690},"Suggestions",[691,693,697,699,703,707],{"text":367,"config":692},{"href":372,"dataGaName":367,"dataGaLocation":687},{"text":694,"config":695},"Code Suggestions (AI)",{"href":696,"dataGaName":694,"dataGaLocation":687},"/solutions/code-suggestions/",{"text":403,"config":698},{"href":405,"dataGaName":403,"dataGaLocation":687},{"text":700,"config":701},"GitLab on AWS",{"href":702,"dataGaName":700,"dataGaLocation":687},"/partners/technology-partners/aws/",{"text":704,"config":705},"GitLab on Google Cloud",{"href":706,"dataGaName":704,"dataGaLocation":687},"/partners/technology-partners/google-cloud-platform/",{"text":708,"config":709},"Why GitLab?",{"href":380,"dataGaName":708,"dataGaLocation":687},{"freeTrial":711,"mobileIcon":716,"desktopIcon":721,"secondaryButton":724},{"text":712,"config":713},"Start free trial",{"href":714,"dataGaName":341,"dataGaLocation":715},"https://gitlab.com/-/trials/new/","nav",{"altText":717,"config":718},"Gitlab Icon",{"src":719,"dataGaName":720,"dataGaLocation":715},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":717,"config":722},{"src":723,"dataGaName":720,"dataGaLocation":715},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":725,"config":726},"Get Started",{"href":727,"dataGaName":728,"dataGaLocation":715},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":730,"mobileIcon":734,"desktopIcon":736},{"text":731,"config":732},"Learn more about GitLab Duo",{"href":372,"dataGaName":733,"dataGaLocation":715},"gitlab duo",{"altText":717,"config":735},{"src":719,"dataGaName":720,"dataGaLocation":715},{"altText":717,"config":737},{"src":723,"dataGaName":720,"dataGaLocation":715},{"button":739,"mobileIcon":744,"desktopIcon":746},{"text":740,"config":741},"/switch",{"href":742,"dataGaName":743,"dataGaLocation":715},"#contact","switch",{"altText":717,"config":745},{"src":719,"dataGaName":720,"dataGaLocation":715},{"altText":717,"config":747},{"src":748,"dataGaName":720,"dataGaLocation":715},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":750,"mobileIcon":755,"desktopIcon":757},{"text":751,"config":752},"Back to pricing",{"href":485,"dataGaName":753,"dataGaLocation":715,"icon":754},"back to pricing","GoBack",{"altText":717,"config":756},{"src":719,"dataGaName":720,"dataGaLocation":715},{"altText":717,"config":758},{"src":723,"dataGaName":720,"dataGaLocation":715},{"title":760,"titleMobile":761,"button":762,"config":767},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":378,"config":763},{"href":764,"dataGaName":765,"dataGaLocation":766},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":768,"disabled":317},"release",{"data":770},{"text":771,"source":772,"edit":778,"contribute":783,"config":788,"items":793,"minimal":1003},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":773,"config":774},"View page source",{"href":775,"dataGaName":776,"dataGaLocation":777},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":779,"config":780},"Edit this page",{"href":781,"dataGaName":782,"dataGaLocation":777},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":784,"config":785},"Please contribute",{"href":786,"dataGaName":787,"dataGaLocation":777},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":789,"facebook":790,"youtube":791,"linkedin":792},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[794,841,895,939,971],{"title":483,"links":795,"subMenu":810},[796,800,805],{"text":797,"config":798},"View plans",{"href":485,"dataGaName":799,"dataGaLocation":777},"view plans",{"text":801,"config":802},"Why Premium?",{"href":803,"dataGaName":804,"dataGaLocation":777},"/pricing/premium/","why premium",{"text":806,"config":807},"Why Ultimate?",{"href":808,"dataGaName":809,"dataGaLocation":777},"/pricing/ultimate/","why ultimate",[811],{"title":812,"links":813},"Contact Us",[814,817,819,821,826,831,836],{"text":815,"config":816},"Contact sales",{"href":667,"dataGaName":346,"dataGaLocation":777},{"text":670,"config":818},{"href":672,"dataGaName":673,"dataGaLocation":777},{"text":675,"config":820},{"href":677,"dataGaName":678,"dataGaLocation":777},{"text":822,"config":823},"Status",{"href":824,"dataGaName":825,"dataGaLocation":777},"https://status.gitlab.com/","status",{"text":827,"config":828},"Terms of use",{"href":829,"dataGaName":830,"dataGaLocation":777},"/terms/","terms of use",{"text":832,"config":833},"Privacy statement",{"href":834,"dataGaName":835,"dataGaLocation":777},"/privacy/","privacy statement",{"text":837,"config":838},"Cookie preferences",{"dataGaName":839,"dataGaLocation":777,"id":840,"isOneTrustButton":320},"cookie preferences","ot-sdk-btn",{"title":383,"links":842,"subMenu":851},[843,847],{"text":844,"config":845},"DevSecOps platform",{"href":365,"dataGaName":846,"dataGaLocation":777},"devsecops platform",{"text":848,"config":849},"AI-Assisted Development",{"href":372,"dataGaName":850,"dataGaLocation":777},"ai-assisted development",[852],{"title":853,"links":854},"Topics",[855,860,865,870,875,880,885,890],{"text":856,"config":857},"CICD",{"href":858,"dataGaName":859,"dataGaLocation":777},"/topics/ci-cd/","cicd",{"text":861,"config":862},"GitOps",{"href":863,"dataGaName":864,"dataGaLocation":777},"/topics/gitops/","gitops",{"text":866,"config":867},"DevOps",{"href":868,"dataGaName":869,"dataGaLocation":777},"/topics/devops/","devops",{"text":871,"config":872},"Version Control",{"href":873,"dataGaName":874,"dataGaLocation":777},"/topics/version-control/","version control",{"text":876,"config":877},"DevSecOps",{"href":878,"dataGaName":879,"dataGaLocation":777},"/topics/devsecops/","devsecops",{"text":881,"config":882},"Cloud Native",{"href":883,"dataGaName":884,"dataGaLocation":777},"/topics/cloud-native/","cloud native",{"text":886,"config":887},"AI for Coding",{"href":888,"dataGaName":889,"dataGaLocation":777},"/topics/devops/ai-for-coding/","ai for coding",{"text":891,"config":892},"Agentic AI",{"href":893,"dataGaName":894,"dataGaLocation":777},"/topics/agentic-ai/","agentic ai",{"title":896,"links":897},"Solutions",[898,900,902,907,911,914,918,921,923,926,929,934],{"text":427,"config":899},{"href":422,"dataGaName":427,"dataGaLocation":777},{"text":416,"config":901},{"href":399,"dataGaName":400,"dataGaLocation":777},{"text":903,"config":904},"Agile development",{"href":905,"dataGaName":906,"dataGaLocation":777},"/solutions/agile-delivery/","agile delivery",{"text":908,"config":909},"SCM",{"href":412,"dataGaName":910,"dataGaLocation":777},"source code management",{"text":856,"config":912},{"href":405,"dataGaName":913,"dataGaLocation":777},"continuous integration & delivery",{"text":915,"config":916},"Value stream management",{"href":455,"dataGaName":917,"dataGaLocation":777},"value stream management",{"text":861,"config":919},{"href":920,"dataGaName":864,"dataGaLocation":777},"/solutions/gitops/",{"text":465,"config":922},{"href":468,"dataGaName":469,"dataGaLocation":777},{"text":924,"config":925},"Small business",{"href":474,"dataGaName":475,"dataGaLocation":777},{"text":927,"config":928},"Public sector",{"href":480,"dataGaName":481,"dataGaLocation":777},{"text":930,"config":931},"Education",{"href":932,"dataGaName":933,"dataGaLocation":777},"/solutions/education/","education",{"text":935,"config":936},"Financial services",{"href":937,"dataGaName":938,"dataGaLocation":777},"/solutions/finance/","financial services",{"title":488,"links":940},[941,943,945,947,950,952,955,957,959,961,963,965,967,969],{"text":501,"config":942},{"href":503,"dataGaName":504,"dataGaLocation":777},{"text":506,"config":944},{"href":508,"dataGaName":509,"dataGaLocation":777},{"text":511,"config":946},{"href":513,"dataGaName":514,"dataGaLocation":777},{"text":516,"config":948},{"href":518,"dataGaName":949,"dataGaLocation":777},"docs",{"text":539,"config":951},{"href":541,"dataGaName":542,"dataGaLocation":777},{"text":953,"config":954},"What's new",{"href":599,"dataGaName":600,"dataGaLocation":777},{"text":534,"config":956},{"href":536,"dataGaName":537,"dataGaLocation":777},{"text":553,"config":958},{"href":555,"dataGaName":556,"dataGaLocation":777},{"text":561,"config":960},{"href":563,"dataGaName":564,"dataGaLocation":777},{"text":566,"config":962},{"href":568,"dataGaName":569,"dataGaLocation":777},{"text":571,"config":964},{"href":573,"dataGaName":574,"dataGaLocation":777},{"text":576,"config":966},{"href":578,"dataGaName":579,"dataGaLocation":777},{"text":581,"config":968},{"href":583,"dataGaName":584,"dataGaLocation":777},{"text":586,"config":970},{"href":588,"dataGaName":589,"dataGaLocation":777},{"title":602,"links":972},[973,975,977,979,981,983,987,992,994,996,998],{"text":610,"config":974},{"href":612,"dataGaName":604,"dataGaLocation":777},{"text":615,"config":976},{"href":617,"dataGaName":618,"dataGaLocation":777},{"text":623,"config":978},{"href":625,"dataGaName":626,"dataGaLocation":777},{"text":628,"config":980},{"href":630,"dataGaName":631,"dataGaLocation":777},{"text":633,"config":982},{"href":635,"dataGaName":636,"dataGaLocation":777},{"text":984,"config":985},"Sustainability",{"href":986,"dataGaName":984,"dataGaLocation":777},"/sustainability/",{"text":988,"config":989},"Diversity, inclusion and belonging (DIB)",{"href":990,"dataGaName":991,"dataGaLocation":777},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":638,"config":993},{"href":640,"dataGaName":641,"dataGaLocation":777},{"text":648,"config":995},{"href":650,"dataGaName":651,"dataGaLocation":777},{"text":653,"config":997},{"href":655,"dataGaName":656,"dataGaLocation":777},{"text":999,"config":1000},"Modern Slavery Transparency Statement",{"href":1001,"dataGaName":1002,"dataGaLocation":777},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1004},[1005,1008,1011],{"text":1006,"config":1007},"Terms",{"href":829,"dataGaName":830,"dataGaLocation":777},{"text":1009,"config":1010},"Cookies",{"dataGaName":839,"dataGaLocation":777,"id":840,"isOneTrustButton":320},{"text":1012,"config":1013},"Privacy",{"href":834,"dataGaName":835,"dataGaLocation":777},[1015],{"id":1016,"title":7,"body":316,"config":1017,"content":1019,"description":316,"extension":1023,"meta":1024,"navigation":320,"path":1025,"seo":1026,"stem":1027,"__hash__":1028},"blogAuthors/en-us/blog/authors/tim-rizzi.yml",{"template":1018},"BlogAuthor",{"name":7,"config":1020},{"headshot":1021,"ctfId":1022},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749661866/Blog/Author%20Headshots/trizzi-headshot.jpg","trizzi","yml",{},"/en-us/blog/authors/tim-rizzi",{},"en-us/blog/authors/tim-rizzi","ADPqrpcnKveFJS0m_zFV0VLtb_h_txu59QVgz_YwKMc",[1030,1036,1040],{"title":1031,"description":1032,"heroImage":1033,"category":312,"date":1034,"authors":316,"slug":316,"externalUrl":1035},"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":1037,"description":1032,"heroImage":1033,"category":312,"date":1038,"authors":316,"slug":316,"externalUrl":1039}," 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":1041,"description":1042,"heroImage":1043,"category":312,"date":1044,"authors":1045,"slug":1047,"externalUrl":316},"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",[1046],"Cesar Saavedra","how-to-use-a-work-item-created-trigger",{"promotions":1049},[1050,1064,1075,1087],{"id":1051,"categories":1052,"header":1054,"text":1055,"button":1056,"image":1061},"ai-modernization",[1053],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":1057,"config":1058},"Get your AI maturity score",{"href":1059,"dataGaName":1060,"dataGaLocation":542},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1062},{"src":1063},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1065,"categories":1066,"header":1067,"text":1055,"button":1068,"image":1072},"devops-modernization",[312,879],"Are you just managing tools or shipping innovation?",{"text":1069,"config":1070},"Get your DevOps maturity score",{"href":1071,"dataGaName":1060,"dataGaLocation":542},"/assessments/devops-modernization-assessment/",{"config":1073},{"src":1074},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1076,"categories":1077,"header":1079,"text":1055,"button":1080,"image":1084},"security-modernization",[1078],"security","Are you trading speed for security?",{"text":1081,"config":1082},"Get your security maturity score",{"href":1083,"dataGaName":1060,"dataGaLocation":542},"/assessments/security-modernization-assessment/",{"config":1085},{"src":1086},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1088,"paths":1089,"header":1092,"text":1093,"button":1094,"image":1099},"github-azure-migration",[1090,1091],"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":1095,"config":1096},"See how GitLab compares to GitHub",{"href":1097,"dataGaName":1098,"dataGaLocation":542},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1100},{"src":1074},{"header":1102,"blurb":1103,"button":1104,"secondaryButton":1109},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1105,"config":1106},"Get your free trial",{"href":1107,"dataGaName":341,"dataGaLocation":1108},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":815,"config":1110},{"href":667,"dataGaName":346,"dataGaLocation":1108},1786803736677]