[{"data":1,"prerenderedAt":995},["ShallowReactive",2],{"/blog/mobile-devops-with-gitlab-part-1":3,"navigation-en-us":212,"banner-en-us":639,"footer-en-us":649,"blog-post-authors-en-us-Darby Frey":891,"blog-related-posts-en-us-mobile-devops-with-gitlab-part-1":906,"blog-promotions-en-us":931,"next-steps-en-us":985},{"id":4,"title":5,"authors":6,"body":8,"category":189,"date":190,"description":191,"extension":192,"externalUrl":193,"faq":193,"featured":194,"heroImage":195,"meta":196,"navigation":197,"path":198,"seo":199,"slug":204,"stem":205,"tags":206,"template":209,"updatedDate":210,"__hash__":211},"blogPosts/en-us/blog/mobile-devops-with-gitlab-part-1.md","Mobile DevOps with GitLab, Part 1 - Code signing with Project-level Secure Files",[7],"Darby Frey",{"type":9,"value":10,"toc":186},"minimark",[11,22,27,41,119,159,182],[12,13,14,15,21],"p",{},"Mobile teams face some unique challenges when it comes to establishing DevOps practices. Build tools are different, release and approval cycles with app stores can be slower and introduce more risk, and some applications require specialized runners. At GitLab, we are focused on finding solutions to these challenges to make it easier for ",[16,17,20],"a",{"href":18,"rel":19},"https://handbook.gitlab.com/handbook/company/mission/#everyone-can-contribute",[],"everyone to contribute","! Starting with mobile code signing.\nThis post is the first in a series on mobile DevOps and it shows how GitLab makes code signing easier using a new feature called Project-level Secure Files.",[23,24,26],"h2",{"id":25},"a-brief-introduction-to-mobile-code-signing","A brief introduction to mobile code signing",[12,28,29,30,34,35,40],{},"Android and iOS projects require special configuration files for secure application code signing to ensure an application on a user's device hasn't been tampered with. These configuration files can be challenging to manage in a ",[16,31,33],{"href":32},"/topics/ci-cd/benefits-continuous-integration/","CI environment",". Keystores, signing certificates, and provisioning profiles shouldn't be stored in version control because they contain sensitive information. These files are also binary (not text), so they can't easily be stored as CI variables.\nTo make this process easier, ",[16,36,39],{"href":37,"rel":38},"https://docs.gitlab.com/releases/#project-level-secure-files-in-open-beta",[],"we've introduced a feature in GitLab 15.0 called Project-level Secure Files",". This feature allows these files to be stored securely as part of a GitLab project but outside version control. Secure Files can then easily be loaded into a CI job when it's time to execute the code signing process.\nGet started by adding a secure file to a project:",[42,43,44,53,60,70,76],"ol",{},[45,46,47,48,52],"li",{},"On the top bar, select ",[49,50,51],"strong",{},"Menu > Projects"," and find your project.",[45,54,55,56,59],{},"On the left sidebar, select ",[49,57,58],{},"Settings > CI/CD",".",[45,61,62,63,66,67,59],{},"In the ",[49,64,65],{},"Secure Files"," section, select ",[49,68,69],{},"Expand",[45,71,72,73,59],{},"Select ",[49,74,75],{},"Upload File",[45,77,78,79,82,83,88,92,93,97,98,103,104,108,109,114,115,118],{},"Find the file to upload, select ",[49,80,81],{},"Open",", and the file upload begins immediately. The file shows up in the list when the upload is complete.\n",[84,85],"img",{"alt":86,"src":87},"Upload Secure File","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782397721/blog/Content%20Images/2022-09-19-mobile-devops-with-gitlab-part-1-introducing-project-level-secure-files/upload-secure-file.png",[84,89],{"alt":90,"src":91},"List Secure Files","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782397720/blog/Content%20Images/2022-09-19-mobile-devops-with-gitlab-part-1-introducing-project-level-secure-files/list-secure-files.png","\nWith the files securely stored with the project, the next step is to load them into a ",[16,94,96],{"href":95},"/topics/ci-cd/","CI/CD"," job. To use your secure files in a CI/CD job, you must use the ",[16,99,102],{"href":100,"rel":101},"https://gitlab.com/gitlab-org/cli/",[],"glab CLI"," tool to download the files in the job. After downloading them, these files can be used in any CI job.\nAdd a command in the script section of your job use the glab CLI to download all files.  If the ",[105,106,107],"code",{},"output-dir"," does not exist, it will be created. Follow the platform appropriate ",[16,110,113],{"href":111,"rel":112},"https://gitlab.com/gitlab-org/cli/#installation",[],"installation instructions"," to install ",[105,116,117],{},"glab",".\nFor example:",[120,121,126],"pre",{"className":122,"code":123,"language":124,"meta":125,"style":125},"language-yaml shiki shiki-themes github-light","  script:\n    - glab auth login --job-token $CI_JOB_TOKEN --hostname $CI_SERVER_FQDN --api-protocol $CI_SERVER_PROTOCOL\n    - glab -R $CI_PROJECT_PATH securefile download --all --output-dir=\"where/to/save\"\n","yaml","",[105,127,128,141,151],{"__ignoreMap":125},[129,130,133,137],"span",{"class":131,"line":132},"line",1,[129,134,136],{"class":135},"shJU0","  script",[129,138,140],{"class":139},"sgsFI",":\n",[129,142,144,147],{"class":131,"line":143},2,[129,145,146],{"class":139},"    - ",[129,148,150],{"class":149},"sYBdl","glab auth login --job-token $CI_JOB_TOKEN --hostname $CI_SERVER_FQDN --api-protocol $CI_SERVER_PROTOCOL\n",[129,152,154,156],{"class":131,"line":153},3,[129,155,146],{"class":139},[129,157,158],{"class":149},"glab -R $CI_PROJECT_PATH securefile download --all --output-dir=\"where/to/save\"\n",[12,160,161,162,167,168,172,173,177,178,59],{},"Now, when the CI job runs, all of the secure files will be available in the location specified. They can then be passed into a build script or loaded into the Apple keychain.\nThat's it! Give it a try, and let us know what you think in the ",[16,163,166],{"href":164,"rel":165},"https://gitlab.com/gitlab-org/gitlab/-/issues/362407",[],"feedback issue",".\nNext time we will walk through ",[16,169,171],{"href":170},"/blog/mobile-devops-with-gitlab-part-2/","how to set up code signing for an Android app",".\nCover image by ",[16,174,176],{"href":175},"https://unsplash.com/@refargotohp?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText","refargotohp"," on ",[16,179,181],{"href":180},"https://unsplash.com/s/photos/mobile-app-building?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText","Unsplash",[183,184,185],"style",{},"html pre.shiki code .shJU0, html code.shiki .shJU0{--shiki-default:#22863A}html pre.shiki code .sgsFI, html code.shiki .sgsFI{--shiki-default:#24292E}html pre.shiki code .sYBdl, html code.shiki .sYBdl{--shiki-default:#032F62}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}",{"title":125,"searchDepth":143,"depth":143,"links":187},[188],{"id":25,"depth":143,"text":26},"devsecops","2022-09-20","An introduction to mobile code signing with the new Project-level Secure Files feature.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668629/Blog/Hero%20Images/refargotohp-mzZp_9QpYLc-unsplash.jpg",{},true,"/en-us/blog/mobile-devops-with-gitlab-part-1",{"title":200,"description":191,"ogTitle":200,"ogDescription":191,"noIndex":194,"ogImage":195,"ogUrl":201,"ogSiteName":202,"ogType":203,"canonicalUrls":201},"Mobile DevOps: Code signing with project-level secure files","https://about.gitlab.com/blog/mobile-devops-with-gitlab-part-1","https://about.gitlab.com","article","mobile-devops-with-gitlab-part-1","en-us/blog/mobile-devops-with-gitlab-part-1",[207,208,96],"agile","DevOps","BlogPost","2025-10-21","Kziq3laosNvzCuvhpWA8ydTcYXqXJqAKwyXjGa05aFs",{"logo":213,"freeTrial":218,"sales":223,"login":228,"items":233,"search":559,"minimal":590,"duo":609,"switchNav":618,"pricingDeployment":629},{"config":214},{"href":215,"dataGaName":216,"dataGaLocation":217},"/","gitlab logo","header",{"text":219,"config":220},"Get free trial",{"href":221,"dataGaName":222,"dataGaLocation":217},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":224,"config":225},"Request a demo",{"href":226,"dataGaName":227,"dataGaLocation":217},"/sales/?contact-topic=request-demo","sales",{"text":229,"config":230},"Sign in",{"href":231,"dataGaName":232,"dataGaLocation":217},"https://gitlab.com/users/sign_in/","sign in",[234,263,362,367,481,537],{"text":235,"config":236,"menu":238},"Platform",{"dataNavLevelOne":237},"platform",{"type":239,"columns":240},"cards",[241,247,255],{"title":235,"description":242,"link":243},"The intelligent orchestration platform for DevSecOps",{"text":244,"config":245},"Explore our Platform",{"href":246,"dataGaName":237,"dataGaLocation":217},"/platform/",{"title":248,"description":249,"link":250},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":251,"config":252},"Meet GitLab Duo",{"href":253,"dataGaName":254,"dataGaLocation":217},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":256,"description":257,"link":258},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":259,"config":260},"Learn more",{"href":261,"dataGaName":262,"dataGaLocation":217},"/why-gitlab/","why gitlab",{"text":264,"left":197,"config":265,"menu":267},"Product",{"dataNavLevelOne":266},"solutions",{"type":268,"link":269,"columns":273,"feature":341},"lists",{"text":270,"config":271},"View all Solutions",{"href":272,"dataGaName":266,"dataGaLocation":217},"/solutions/",[274,297,320],{"title":275,"description":276,"link":277,"items":282},"Automation","CI/CD and automation to accelerate deployment",{"config":278},{"icon":279,"href":280,"dataGaName":281,"dataGaLocation":217},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[283,286,289,293],{"text":96,"config":284},{"href":285,"dataGaLocation":217,"dataGaName":96},"/solutions/continuous-integration/",{"text":248,"config":287},{"href":253,"dataGaLocation":217,"dataGaName":288},"gitlab duo agent platform - product menu",{"text":290,"config":291},"Source Code Management",{"href":292,"dataGaLocation":217,"dataGaName":290},"/solutions/source-code-management/",{"text":294,"config":295},"Automated Software Delivery",{"href":280,"dataGaLocation":217,"dataGaName":296},"Automated software delivery",{"title":298,"description":299,"link":300,"items":305},"Security","Deliver code faster without compromising security",{"config":301},{"href":302,"dataGaName":303,"dataGaLocation":217,"icon":304},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[306,310,315],{"text":307,"config":308},"Application Security Testing",{"href":302,"dataGaName":309,"dataGaLocation":217},"Application security testing",{"text":311,"config":312},"Software Supply Chain Security",{"href":313,"dataGaLocation":217,"dataGaName":314},"/solutions/supply-chain/","Software supply chain security",{"text":316,"config":317},"Software Compliance",{"href":318,"dataGaName":319,"dataGaLocation":217},"/solutions/software-compliance/","software compliance",{"title":321,"link":322,"items":327},"Measurement",{"config":323},{"icon":324,"href":325,"dataGaName":326,"dataGaLocation":217},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[328,332,336],{"text":329,"config":330},"Visibility & Measurement",{"href":325,"dataGaLocation":217,"dataGaName":331},"Visibility and Measurement",{"text":333,"config":334},"Value Stream Management",{"href":335,"dataGaLocation":217,"dataGaName":333},"/solutions/value-stream-management/",{"text":337,"config":338},"Analytics & Insights",{"href":339,"dataGaLocation":217,"dataGaName":340},"/solutions/analytics-and-insights/","Analytics and insights",{"title":342,"type":268,"items":343},"GitLab for",[344,350,356],{"text":345,"config":346},"Enterprise",{"icon":347,"href":348,"dataGaLocation":217,"dataGaName":349},"Building","/enterprise/","enterprise",{"text":351,"config":352},"Small Business",{"icon":353,"href":354,"dataGaLocation":217,"dataGaName":355},"Work","/small-business/","small business",{"text":357,"config":358},"Public Sector",{"icon":359,"href":360,"dataGaLocation":217,"dataGaName":361},"Organization","/solutions/public-sector/","public sector",{"text":363,"config":364},"Pricing",{"href":365,"dataGaName":366,"dataGaLocation":217,"dataNavLevelOne":366},"/pricing/","pricing",{"text":368,"config":369,"menu":371},"Resources",{"dataNavLevelOne":370},"resources",{"type":268,"link":372,"columns":376,"feature":470},{"text":373,"config":374},"View all resources",{"href":375,"dataGaName":370,"dataGaLocation":217},"/resources/",[377,410,437],{"title":378,"items":379},"Getting started",[380,385,390,395,400,405],{"text":381,"config":382},"Install",{"href":383,"dataGaName":384,"dataGaLocation":217},"/install/","install",{"text":386,"config":387},"Quick start guides",{"href":388,"dataGaName":389,"dataGaLocation":217},"/get-started/","quick setup checklists",{"text":391,"config":392},"Learn",{"href":393,"dataGaLocation":217,"dataGaName":394},"https://university.gitlab.com/","learn",{"text":396,"config":397},"Product documentation",{"href":398,"dataGaName":399,"dataGaLocation":217},"https://docs.gitlab.com/","product documentation",{"text":401,"config":402},"Best practice videos",{"href":403,"dataGaName":404,"dataGaLocation":217},"/getting-started-videos/","best practice videos",{"text":406,"config":407},"Integrations",{"href":408,"dataGaName":409,"dataGaLocation":217},"/integrations/","integrations",{"title":411,"items":412},"Discover",[413,418,423,428,432],{"text":414,"config":415},"Customer success stories",{"href":416,"dataGaName":417,"dataGaLocation":217},"/customers/","customer success stories",{"text":419,"config":420},"Blog",{"href":421,"dataGaName":422,"dataGaLocation":217},"/blog/","blog",{"text":424,"config":425},"Demo Hub",{"href":426,"dataGaName":427,"dataGaLocation":217},"/demo-hub/","demo hub",{"text":429,"config":430},"The Source",{"href":431,"dataGaName":422,"dataGaLocation":217},"/the-source/",{"text":433,"config":434},"Remote",{"href":435,"dataGaName":436,"dataGaLocation":217},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":438,"items":439},"Connect",[440,445,450,455,460,465],{"text":441,"config":442},"GitLab Services",{"href":443,"dataGaName":444,"dataGaLocation":217},"/services/","services",{"text":446,"config":447},"Contribute",{"href":448,"dataGaName":449,"dataGaLocation":217},"https://contributors.gitlab.com","contribute",{"text":451,"config":452},"Community",{"href":453,"dataGaName":454,"dataGaLocation":217},"/community/","community",{"text":456,"config":457},"Forum",{"href":458,"dataGaName":459,"dataGaLocation":217},"https://forum.gitlab.com/","forum",{"text":461,"config":462},"Events",{"href":463,"dataGaName":464,"dataGaLocation":217},"/events/","events",{"text":466,"config":467},"Partners",{"href":468,"dataGaName":469,"dataGaLocation":217},"/partners/","partners",{"config":471,"title":474,"text":475,"link":476},{"background":472,"textColor":473},"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":477,"config":478},"Read the latest",{"href":479,"dataGaName":480,"dataGaLocation":217},"/whats-new/","whats new",{"text":482,"config":483,"menu":485},"Company",{"dataNavLevelOne":484},"company",{"type":268,"columns":486},[487],{"items":488},[489,494,500,502,507,512,517,522,527,532],{"text":490,"config":491},"About",{"href":492,"dataGaName":493,"dataGaLocation":217},"/company/","about",{"text":495,"config":496,"footerGa":499},"Jobs",{"href":497,"dataGaName":498,"dataGaLocation":217},"/jobs/","jobs",{"dataGaName":498},{"text":461,"config":501},{"href":463,"dataGaName":464,"dataGaLocation":217},{"text":503,"config":504},"Leadership",{"href":505,"dataGaName":506,"dataGaLocation":217},"/company/team/e-group/","leadership",{"text":508,"config":509},"Handbook",{"href":510,"dataGaName":511,"dataGaLocation":217},"https://handbook.gitlab.com/","handbook",{"text":513,"config":514},"Investor relations",{"href":515,"dataGaName":516,"dataGaLocation":217},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":518,"config":519},"Trust Center",{"href":520,"dataGaName":521,"dataGaLocation":217},"/security/","trust center",{"text":523,"config":524},"AI Transparency Center",{"href":525,"dataGaName":526,"dataGaLocation":217},"/ai-transparency-center/","ai transparency center",{"text":528,"config":529},"Newsletter",{"href":530,"dataGaName":531,"dataGaLocation":217},"/company/contact/#contact-forms","newsletter",{"text":533,"config":534},"Press",{"href":535,"dataGaName":536,"dataGaLocation":217},"/press/","press",{"text":538,"config":539,"menu":540},"Contact us",{"dataNavLevelOne":484},{"type":268,"columns":541},[542],{"items":543},[544,549,554],{"text":545,"config":546},"Talk to sales",{"href":547,"dataGaName":548,"dataGaLocation":217},"/sales/","talk to sales",{"text":550,"config":551},"Support portal",{"href":552,"dataGaName":553,"dataGaLocation":217},"https://support.gitlab.com/hc/en-us","support portal",{"text":555,"config":556},"Customer portal",{"href":557,"dataGaName":558,"dataGaLocation":217},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":560,"login":561,"suggestions":568},"Close",{"text":562,"link":563},"To search repositories and projects, login to",{"text":564,"config":565},"gitlab.com",{"href":231,"dataGaName":566,"dataGaLocation":567},"search login","search",{"text":569,"default":570},"Suggestions",[571,573,577,579,583,587],{"text":248,"config":572},{"href":253,"dataGaName":248,"dataGaLocation":567},{"text":574,"config":575},"Code Suggestions (AI)",{"href":576,"dataGaName":574,"dataGaLocation":567},"/solutions/code-suggestions/",{"text":96,"config":578},{"href":285,"dataGaName":96,"dataGaLocation":567},{"text":580,"config":581},"GitLab on AWS",{"href":582,"dataGaName":580,"dataGaLocation":567},"/partners/technology-partners/aws/",{"text":584,"config":585},"GitLab on Google Cloud",{"href":586,"dataGaName":584,"dataGaLocation":567},"/partners/technology-partners/google-cloud-platform/",{"text":588,"config":589},"Why GitLab?",{"href":261,"dataGaName":588,"dataGaLocation":567},{"freeTrial":591,"mobileIcon":596,"desktopIcon":601,"secondaryButton":604},{"text":592,"config":593},"Start free trial",{"href":594,"dataGaName":222,"dataGaLocation":595},"https://gitlab.com/-/trials/new/","nav",{"altText":597,"config":598},"Gitlab Icon",{"src":599,"dataGaName":600,"dataGaLocation":595},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":597,"config":602},{"src":603,"dataGaName":600,"dataGaLocation":595},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":605,"config":606},"Get Started",{"href":607,"dataGaName":608,"dataGaLocation":595},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":610,"mobileIcon":614,"desktopIcon":616},{"text":611,"config":612},"Learn more about GitLab Duo",{"href":253,"dataGaName":613,"dataGaLocation":595},"gitlab duo",{"altText":597,"config":615},{"src":599,"dataGaName":600,"dataGaLocation":595},{"altText":597,"config":617},{"src":603,"dataGaName":600,"dataGaLocation":595},{"button":619,"mobileIcon":624,"desktopIcon":626},{"text":620,"config":621},"/switch",{"href":622,"dataGaName":623,"dataGaLocation":595},"#contact","switch",{"altText":597,"config":625},{"src":599,"dataGaName":600,"dataGaLocation":595},{"altText":597,"config":627},{"src":628,"dataGaName":600,"dataGaLocation":595},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":630,"mobileIcon":635,"desktopIcon":637},{"text":631,"config":632},"Back to pricing",{"href":365,"dataGaName":633,"dataGaLocation":595,"icon":634},"back to pricing","GoBack",{"altText":597,"config":636},{"src":599,"dataGaName":600,"dataGaLocation":595},{"altText":597,"config":638},{"src":603,"dataGaName":600,"dataGaLocation":595},{"title":640,"titleMobile":641,"button":642,"config":647},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":259,"config":643},{"href":644,"dataGaName":645,"dataGaLocation":646},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":648,"disabled":194},"release",{"data":650},{"text":651,"source":652,"edit":658,"contribute":663,"config":668,"items":673,"minimal":880},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":653,"config":654},"View page source",{"href":655,"dataGaName":656,"dataGaLocation":657},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":659,"config":660},"Edit this page",{"href":661,"dataGaName":662,"dataGaLocation":657},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":664,"config":665},"Please contribute",{"href":666,"dataGaName":667,"dataGaLocation":657},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":669,"facebook":670,"youtube":671,"linkedin":672},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[674,721,772,816,848],{"title":363,"links":675,"subMenu":690},[676,680,685],{"text":677,"config":678},"View plans",{"href":365,"dataGaName":679,"dataGaLocation":657},"view plans",{"text":681,"config":682},"Why Premium?",{"href":683,"dataGaName":684,"dataGaLocation":657},"/pricing/premium/","why premium",{"text":686,"config":687},"Why Ultimate?",{"href":688,"dataGaName":689,"dataGaLocation":657},"/pricing/ultimate/","why ultimate",[691],{"title":692,"links":693},"Contact Us",[694,697,699,701,706,711,716],{"text":695,"config":696},"Contact sales",{"href":547,"dataGaName":227,"dataGaLocation":657},{"text":550,"config":698},{"href":552,"dataGaName":553,"dataGaLocation":657},{"text":555,"config":700},{"href":557,"dataGaName":558,"dataGaLocation":657},{"text":702,"config":703},"Status",{"href":704,"dataGaName":705,"dataGaLocation":657},"https://status.gitlab.com/","status",{"text":707,"config":708},"Terms of use",{"href":709,"dataGaName":710,"dataGaLocation":657},"/terms/","terms of use",{"text":712,"config":713},"Privacy statement",{"href":714,"dataGaName":715,"dataGaLocation":657},"/privacy/","privacy statement",{"text":717,"config":718},"Cookie preferences",{"dataGaName":719,"dataGaLocation":657,"id":720,"isOneTrustButton":197},"cookie preferences","ot-sdk-btn",{"title":264,"links":722,"subMenu":731},[723,727],{"text":724,"config":725},"DevSecOps platform",{"href":246,"dataGaName":726,"dataGaLocation":657},"devsecops platform",{"text":728,"config":729},"AI-Assisted Development",{"href":253,"dataGaName":730,"dataGaLocation":657},"ai-assisted development",[732],{"title":733,"links":734},"Topics",[735,739,744,748,753,757,762,767],{"text":736,"config":737},"CICD",{"href":95,"dataGaName":738,"dataGaLocation":657},"cicd",{"text":740,"config":741},"GitOps",{"href":742,"dataGaName":743,"dataGaLocation":657},"/topics/gitops/","gitops",{"text":208,"config":745},{"href":746,"dataGaName":747,"dataGaLocation":657},"/topics/devops/","devops",{"text":749,"config":750},"Version Control",{"href":751,"dataGaName":752,"dataGaLocation":657},"/topics/version-control/","version control",{"text":754,"config":755},"DevSecOps",{"href":756,"dataGaName":189,"dataGaLocation":657},"/topics/devsecops/",{"text":758,"config":759},"Cloud Native",{"href":760,"dataGaName":761,"dataGaLocation":657},"/topics/cloud-native/","cloud native",{"text":763,"config":764},"AI for Coding",{"href":765,"dataGaName":766,"dataGaLocation":657},"/topics/devops/ai-for-coding/","ai for coding",{"text":768,"config":769},"Agentic AI",{"href":770,"dataGaName":771,"dataGaLocation":657},"/topics/agentic-ai/","agentic ai",{"title":773,"links":774},"Solutions",[775,777,779,784,788,791,795,798,800,803,806,811],{"text":307,"config":776},{"href":302,"dataGaName":307,"dataGaLocation":657},{"text":296,"config":778},{"href":280,"dataGaName":281,"dataGaLocation":657},{"text":780,"config":781},"Agile development",{"href":782,"dataGaName":783,"dataGaLocation":657},"/solutions/agile-delivery/","agile delivery",{"text":785,"config":786},"SCM",{"href":292,"dataGaName":787,"dataGaLocation":657},"source code management",{"text":736,"config":789},{"href":285,"dataGaName":790,"dataGaLocation":657},"continuous integration & delivery",{"text":792,"config":793},"Value stream management",{"href":335,"dataGaName":794,"dataGaLocation":657},"value stream management",{"text":740,"config":796},{"href":797,"dataGaName":743,"dataGaLocation":657},"/solutions/gitops/",{"text":345,"config":799},{"href":348,"dataGaName":349,"dataGaLocation":657},{"text":801,"config":802},"Small business",{"href":354,"dataGaName":355,"dataGaLocation":657},{"text":804,"config":805},"Public sector",{"href":360,"dataGaName":361,"dataGaLocation":657},{"text":807,"config":808},"Education",{"href":809,"dataGaName":810,"dataGaLocation":657},"/solutions/education/","education",{"text":812,"config":813},"Financial services",{"href":814,"dataGaName":815,"dataGaLocation":657},"/solutions/finance/","financial services",{"title":368,"links":817},[818,820,822,824,827,829,832,834,836,838,840,842,844,846],{"text":381,"config":819},{"href":383,"dataGaName":384,"dataGaLocation":657},{"text":386,"config":821},{"href":388,"dataGaName":389,"dataGaLocation":657},{"text":391,"config":823},{"href":393,"dataGaName":394,"dataGaLocation":657},{"text":396,"config":825},{"href":398,"dataGaName":826,"dataGaLocation":657},"docs",{"text":419,"config":828},{"href":421,"dataGaName":422,"dataGaLocation":657},{"text":830,"config":831},"What's new",{"href":479,"dataGaName":480,"dataGaLocation":657},{"text":414,"config":833},{"href":416,"dataGaName":417,"dataGaLocation":657},{"text":433,"config":835},{"href":435,"dataGaName":436,"dataGaLocation":657},{"text":441,"config":837},{"href":443,"dataGaName":444,"dataGaLocation":657},{"text":446,"config":839},{"href":448,"dataGaName":449,"dataGaLocation":657},{"text":451,"config":841},{"href":453,"dataGaName":454,"dataGaLocation":657},{"text":456,"config":843},{"href":458,"dataGaName":459,"dataGaLocation":657},{"text":461,"config":845},{"href":463,"dataGaName":464,"dataGaLocation":657},{"text":466,"config":847},{"href":468,"dataGaName":469,"dataGaLocation":657},{"title":482,"links":849},[850,852,854,856,858,860,864,869,871,873,875],{"text":490,"config":851},{"href":492,"dataGaName":484,"dataGaLocation":657},{"text":495,"config":853},{"href":497,"dataGaName":498,"dataGaLocation":657},{"text":503,"config":855},{"href":505,"dataGaName":506,"dataGaLocation":657},{"text":508,"config":857},{"href":510,"dataGaName":511,"dataGaLocation":657},{"text":513,"config":859},{"href":515,"dataGaName":516,"dataGaLocation":657},{"text":861,"config":862},"Sustainability",{"href":863,"dataGaName":861,"dataGaLocation":657},"/sustainability/",{"text":865,"config":866},"Diversity, inclusion and belonging (DIB)",{"href":867,"dataGaName":868,"dataGaLocation":657},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":518,"config":870},{"href":520,"dataGaName":521,"dataGaLocation":657},{"text":528,"config":872},{"href":530,"dataGaName":531,"dataGaLocation":657},{"text":533,"config":874},{"href":535,"dataGaName":536,"dataGaLocation":657},{"text":876,"config":877},"Modern Slavery Transparency Statement",{"href":878,"dataGaName":879,"dataGaLocation":657},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":881},[882,885,888],{"text":883,"config":884},"Terms",{"href":709,"dataGaName":710,"dataGaLocation":657},{"text":886,"config":887},"Cookies",{"dataGaName":719,"dataGaLocation":657,"id":720,"isOneTrustButton":197},{"text":889,"config":890},"Privacy",{"href":714,"dataGaName":715,"dataGaLocation":657},[892],{"id":893,"title":7,"body":193,"config":894,"content":896,"description":193,"extension":900,"meta":901,"navigation":197,"path":902,"seo":903,"stem":904,"__hash__":905},"blogAuthors/en-us/blog/authors/darby-frey.yml",{"template":895},"BlogAuthor",{"name":7,"config":897},{"headshot":898,"ctfId":899},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749668565/Blog/Author%20Headshots/darbyfrey-headshot.png","darbyfrey","yml",{},"/en-us/blog/authors/darby-frey",{},"en-us/blog/authors/darby-frey","lqGN1mYG_LRXzRujnkqXvcZHmVHEKoeXrwJofasmK_8",[907,915,923],{"title":908,"description":909,"heroImage":910,"category":189,"date":911,"authors":912,"slug":914,"externalUrl":193},"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",[913],"Olivier Campeau","gitaly-on-kubernetes-generally-available",{"title":916,"description":917,"heroImage":918,"category":189,"date":919,"authors":920,"slug":922,"externalUrl":193},"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",[921],"Rod Burns","teaching-software-development-the-easy-way-using-gitlab",{"title":924,"description":925,"heroImage":926,"category":189,"date":927,"authors":928,"slug":930,"externalUrl":193},"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",[929],"Manav Khurana","ai-is-reshaping-devsecops-attend-gitlab-transcend-to-see-whats-next",{"promotions":932},[933,947,959,971],{"id":934,"categories":935,"header":937,"text":938,"button":939,"image":944},"ai-modernization",[936],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":940,"config":941},"Get your AI maturity score",{"href":942,"dataGaName":943,"dataGaLocation":422},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":945},{"src":946},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":948,"categories":949,"header":951,"text":938,"button":952,"image":956},"devops-modernization",[950,189],"product","Are you just managing tools or shipping innovation?",{"text":953,"config":954},"Get your DevOps maturity score",{"href":955,"dataGaName":943,"dataGaLocation":422},"/assessments/devops-modernization-assessment/",{"config":957},{"src":958},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":960,"categories":961,"header":963,"text":938,"button":964,"image":968},"security-modernization",[962],"security","Are you trading speed for security?",{"text":965,"config":966},"Get your security maturity score",{"href":967,"dataGaName":943,"dataGaLocation":422},"/assessments/security-modernization-assessment/",{"config":969},{"src":970},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":972,"paths":973,"header":976,"text":977,"button":978,"image":983},"github-azure-migration",[974,975],"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":979,"config":980},"See how GitLab compares to GitHub",{"href":981,"dataGaName":982,"dataGaLocation":422},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":984},{"src":958},{"header":986,"blurb":987,"button":988,"secondaryButton":993},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":989,"config":990},"Get your free trial",{"href":991,"dataGaName":222,"dataGaLocation":992},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":695,"config":994},{"href":547,"dataGaName":227,"dataGaLocation":992},1786803753284]