[{"data":1,"prerenderedAt":2960},["ShallowReactive",2],{"/blog/migrating-from-bamboo-to-gitlab-cicd":3,"navigation-en-us":2178,"banner-en-us":2605,"footer-en-us":2614,"blog-post-authors-en-us-Abubakar Siddiq Ango":2856,"blog-related-posts-en-us-migrating-from-bamboo-to-gitlab-cicd":2871,"blog-promotions-en-us":2896,"next-steps-en-us":2950},{"id":4,"title":5,"authors":6,"body":8,"category":2158,"date":2159,"description":2160,"extension":2161,"externalUrl":2162,"faq":2162,"featured":2163,"heroImage":2164,"meta":2165,"navigation":427,"path":2166,"seo":2167,"slug":2171,"stem":2172,"tags":2173,"template":2176,"updatedDate":2162,"__hash__":2177},"blogPosts/en-us/blog/migrating-from-bamboo-to-gitlab-cicd.md","How to migrate from Bamboo to GitLab CI/CD",[7],"Abubakar Siddiq Ango",{"type":9,"value":10,"toc":2141},"minimark",[11,25,34,37,40,45,50,53,56,59,70,87,91,123,127,130,145,149,152,203,210,214,229,233,239,242,294,297,311,323,327,330,594,597,761,771,775,786,858,872,875,958,962,965,1132,1135,1143,1151,1160,1169,1173,1176,1238,1241,1332,1359,1414,1446,1548,1552,1555,1558,1606,1639,1645,1688,1699,1704,1710,1713,1833,1836,1842,1883,1888,1934,1941,1944,2026,2029,2059,2067,2071,2080,2129,2137],[12,13,14],"p",{},[15,16,17,18,24],"em",{},"Atlassian is ending support for all Server products in February 2024. ",[19,20,23],"a",{"href":21,"rel":22},"https://about.gitlab.com/move-to-gitlab-from-atlassian/",[],"Learn more about the benefits of migrating from Atlassian to GitLab here",".",[12,26,27,28,33],{},"The clock is ticking towards the February 15, 2024, ",[19,29,32],{"href":30,"rel":31},"https://about.gitlab.com/blog/atlassian-server-ending-move-to-a-single-devsecops-platform/",[],"end-of-life date Atlassian has set for their Server products",". Users whose workflows rely on on-premises deployments of Atlassian Server products are faced with the choice of upgrading to Atlassian’s Data Center or Cloud products or finding alternatives.",[12,35,36],{},"One of the Atlassian products that is impacted is Bamboo, a CI/CD solution. Whether you're simply looking for a new CI/CD tool or you're looking to consolidate your entire toolchain, the Atlassian Server end of life is a great opportunity to make the move to GitLab to take advantage of the automation, scalability, and security of an end-to-end DevSecOps platform.",[12,38,39],{},"In this blog post, we'll cover the steps you can take to migrate your Bamboo CI/CD setup to GitLab CI/CD.",[41,42,44],"h2",{"id":43},"how-is-gitlab-cicd-different-from-bamboo","How is GitLab CI/CD different from Bamboo?",[46,47,49],"h3",{"id":48},"organization","Organization",[12,51,52],{},"Bamboo is structured around Projects and Plans. CI/CD jobs are grouped into stages, which are defined in a Bamboo plan along with other configurations that determine how jobs run. Bamboo projects are used to organize plans, which are classified into Build and Deployment plans.",[12,54,55],{},"As the name implies, Build plans can be configured to pull code from configured repositories and generate artifacts. These artifacts are picked by jobs defined in Deployment plans and are deployed to environments configured in Bamboo. Bamboo jobs are also composed of tasks, which can be a script, a task to pull code from a repository, or a task specific to a technology.",[12,57,58],{},"You also need to add code repositories to a Bamboo plan or a project, making it available to all plans under it, and set triggers for how Bamboo detects changes and runs builds.",[12,60,61,62,66,67,69],{},"GitLab is organized differently. Everything is in a single platform, with your CI/CD configuration provided as part of your code in a ",[63,64,65],"code",{},".gitlab-ci.yml"," file, from a group’s compliance pipeline configuration, or Auto DevOps when enabled and the ",[63,68,65],{}," file is not found in a project.",[12,71,72,73,76,77,80,81,86],{},"Gitlab CI/CD configurations are composed of jobs, grouped into stages. How the jobs are triggered can be controlled by CI/CD ",[63,74,75],{},"rules"," and there is no separate configuration for deployments. Deployment jobs can be defined in the same CI/CD script in a ",[63,78,79],{},"deploy"," stage, with the ",[19,82,85],{"href":83,"rel":84},"https://docs.gitlab.com/ci/environments/",[],"deployment environment"," set.",[46,88,90],{"id":89},"agents-vs-runners","Agents vs Runners",[12,92,93,94,99,100,105,106,111,112,117,118,24],{},"Bamboo uses ",[19,95,98],{"href":96,"rel":97},"https://confluence.atlassian.com/confeval/development-tools-evaluator-resources/bamboo/bamboo-remote-agents-and-local-agents",[],"Agents","\nto run builds and deployments. These can be local agents running on the Bamboo server or\nremote agents running external to the server. GitLab uses a similar concept to agents,\ncalled ",[19,101,104],{"href":102,"rel":103},"https://docs.gitlab.com/runner/",[],"GitLab Runner",", which uses ",[19,107,110],{"href":108,"rel":109},"https://docs.gitlab.com/runner/executors/",[],"executors","\nto run builds. Examples of executors include SSH, Docker, and Kubernetes. You can choose to\nuse GitLab ",[19,113,116],{"href":114,"rel":115},"https://docs.gitlab.com/ci/runners/",[],"SaaS runners"," or deploy your own ",[19,119,122],{"href":120,"rel":121},"https://docs.gitlab.com/runner/install/",[],"self-managed runners",[46,124,126],{"id":125},"bamboo-specs-vs-gitlab-ciyml-file","Bamboo Specs vs .gitlab-ci.yml file",[12,128,129],{},"Bamboo is largely configured via the Bamboo UI but can also be configured as code using Bamboo Specs. Bamboo Specs can be defined using Java and other JVM languages or using YAML, with Java having more complete feature coverage than YAML. Bamboo Specs can be defined and stored in spec repositories, then linked to Bamboo projects.",[12,131,132,133,135,136,141,142,144],{},"The ",[63,134,65],{}," file is central to the CI/CD workflow in GitLab. When included in a project, the defined configurations are executed against the project; otherwise, ",[19,137,140],{"href":138,"rel":139},"https://docs.gitlab.com/topics/autodevops/",[],"Auto DevOps"," automatically builds and deploys your application, when enabled. Templates and CI/CD components can also be added to ",[63,143,65],{}," for complex use cases.",[41,146,148],{"id":147},"how-gitlab-steps-up-your-workflow","How GitLab steps up your workflow",[12,150,151],{},"In addition to building and deploying your application, GitLab provides a suite of features that allows for building secure applications fast and efficiently. These include:",[153,154,155,164,167,176],"ul",{},[156,157,158,163],"li",{},[19,159,162],{"href":160,"rel":161},"https://docs.gitlab.com/user/application_security/",[],"Application security",": GitLab analyzes your application across the stages of the software development lifecycle with security scans such as Static Application Security Testing (SAST), Secret Detection, Infrastructure as Code (IaC) Scanning, Dependency Scanning, License Scanning, Coverage-guided Fuzz Testing, Container Scanning, API Security, Dynamic Application Security Testing (DAST), and Operational Security Scanning.",[156,165,166],{},"Compliance and security policies: Understanding the results of security scans and putting policies in place is crucial to ensuring secure applications. You can set up Scan Execution or Result policies to ensure additional scans or approval requirements are added to comply with regulatory or self-imposed requirements.",[156,168,169,170,175],{},"CI/CD catalog: Parts of CI/CD configurations that are used across multiple projects can be turned into ",[19,171,174],{"href":172,"rel":173},"https://docs.gitlab.com/ci/components/#components-repository",[],"components"," stored in component repositories that are discoverable in the CI/CD catalog.",[156,177,178,179,184,185,190,191,196,197,202],{},"Packages and registries: Custom or local replicas of popular packages can be hosted with the ",[19,180,183],{"href":181,"rel":182},"https://docs.gitlab.com/user/packages/package_registry/",[],"GitLab Package Registry",". You can also host container images with the ",[19,186,189],{"href":187,"rel":188},"https://docs.gitlab.com/user/packages/container_registry/",[],"GitLab Container Registry"," and Terraform modules with the ",[19,192,195],{"href":193,"rel":194},"https://docs.gitlab.com/user/packages/terraform_module_registry/",[],"GitLab Terraform Module Registry",". If you frequently use public images or packages, you can use the ",[19,198,201],{"href":199,"rel":200},"https://docs.gitlab.com/user/packages/dependency_proxy/",[],"Dependency Proxy"," to maintain a local cache.",[12,204,205,24],{},[19,206,209],{"href":207,"rel":208},"https://about.gitlab.com/solutions/continuous-integration/",[],"Learn more about other ways to automate your entire workflow with GitLab CI/CD",[41,211,213],{"id":212},"convert-bamboo-specs-to-gitlab-ciyml-script","Convert Bamboo Specs to .gitlab-ci.yml script",[12,215,216,217,222,223,228],{},"For the purpose of this blog post, we will focus on ",[19,218,221],{"href":219,"rel":220},"https://docs.atlassian.com/bamboo-specs-docs/9.3.0/specs.html?yaml",[],"Bamboo YAML Specs",". You can export your Bamboo Plans as YAML Spec — ",[19,224,227],{"href":225,"rel":226},"https://confluence.atlassian.com/bamboo/exporting-existing-plan-configuration-to-bamboo-yaml-specs-1018270696.html",[],"learn more here",". Now, lets walk through converting your Bamboo YAML Specs into GitLab CI/CD configuration.",[46,230,232],{"id":231},"container-image","Container image",[12,234,235,236,24],{},"First is defining the container image of the container your jobs will run in. By default, Bamboo uses Agents, which depend on how the host machines are configured. You can replicate the Agent’s environment into a container image hosted in the ",[19,237,189],{"href":187,"rel":238},[],[12,240,241],{},"If you already run Bamboo jobs in a container image, it will look like this in your spec:",[243,244,249],"pre",{"className":245,"code":246,"language":247,"meta":248,"style":248},"language-yaml shiki shiki-themes github-light","---\nversion: 2\n# ...\ndocker: ubuntu\n","yaml","",[63,250,251,260,275,282],{"__ignoreMap":248},[252,253,256],"span",{"class":254,"line":255},"line",1,[252,257,259],{"class":258},"s7eDp","---\n",[252,261,263,267,271],{"class":254,"line":262},2,[252,264,266],{"class":265},"shJU0","version",[252,268,270],{"class":269},"sgsFI",": ",[252,272,274],{"class":273},"sYu0t","2\n",[252,276,278],{"class":254,"line":277},3,[252,279,281],{"class":280},"sAwPA","# ...\n",[252,283,285,288,290],{"class":254,"line":284},4,[252,286,287],{"class":265},"docker",[252,289,270],{"class":269},[252,291,293],{"class":292},"sYBdl","ubuntu\n",[12,295,296],{},"This might be defined at the plan or job level. You can define it in GitLab as follows:",[243,298,300],{"className":245,"code":299,"language":247,"meta":248,"style":248},"image: ubuntu\n",[63,301,302],{"__ignoreMap":248},[252,303,304,307,309],{"class":254,"line":255},[252,305,306],{"class":265},"image",[252,308,270],{"class":269},[252,310,293],{"class":292},[12,312,313,318,319,24],{},[19,314,317],{"href":315,"rel":316},"https://docs.gitlab.com/ci/docker/using_docker_images/",[],"Learn more about running CI/CD jobs in containers here",". If your use case does not include containers, you can explore ",[19,320,322],{"href":108,"rel":321},[],"other executors",[46,324,326],{"id":325},"stages","Stages",[12,328,329],{},"In Bamboo, stages and their list of jobs are defined first, before the job definitions:",[243,331,333],{"className":245,"code":332,"language":247,"meta":248,"style":248},"version: 2\nstages:\n  - First Stage:\n      jobs:\n        - Job 1A \n        - Job 1B\n  - Second Stage:\n      jobs:\n        - Job 2A \n        - Job 2B\n\nJob 1A:\n  tasks:\n    - clean\n    - script\n        - touch file1A.txt\n\nJob 1B:\n  tasks:\n    - clean\n    - script\n        - touch file1B.txt\n\nJob 2A:\n  tasks:\n    - clean\n    - script\n        - touch file2A.txt\n\nJob 2B:\n  tasks:\n    - clean\n    - script\n        - touch file2B.txt\n\n",[63,334,335,343,350,360,367,379,387,397,404,414,422,429,436,444,453,461,469,474,482,489,496,503,511,516,523,530,537,544,552,557,565,572,579,586],{"__ignoreMap":248},[252,336,337,339,341],{"class":254,"line":255},[252,338,266],{"class":265},[252,340,270],{"class":269},[252,342,274],{"class":273},[252,344,345,347],{"class":254,"line":262},[252,346,325],{"class":265},[252,348,349],{"class":269},":\n",[252,351,352,355,358],{"class":254,"line":277},[252,353,354],{"class":269},"  - ",[252,356,357],{"class":265},"First Stage",[252,359,349],{"class":269},[252,361,362,365],{"class":254,"line":284},[252,363,364],{"class":265},"      jobs",[252,366,349],{"class":269},[252,368,370,373,376],{"class":254,"line":369},5,[252,371,372],{"class":269},"        - ",[252,374,375],{"class":292},"Job 1A",[252,377,378],{"class":269}," \n",[252,380,382,384],{"class":254,"line":381},6,[252,383,372],{"class":269},[252,385,386],{"class":292},"Job 1B\n",[252,388,390,392,395],{"class":254,"line":389},7,[252,391,354],{"class":269},[252,393,394],{"class":265},"Second Stage",[252,396,349],{"class":269},[252,398,400,402],{"class":254,"line":399},8,[252,401,364],{"class":265},[252,403,349],{"class":269},[252,405,407,409,412],{"class":254,"line":406},9,[252,408,372],{"class":269},[252,410,411],{"class":292},"Job 2A",[252,413,378],{"class":269},[252,415,417,419],{"class":254,"line":416},10,[252,418,372],{"class":269},[252,420,421],{"class":292},"Job 2B\n",[252,423,425],{"class":254,"line":424},11,[252,426,428],{"emptyLinePlaceholder":427},true,"\n",[252,430,432,434],{"class":254,"line":431},12,[252,433,375],{"class":265},[252,435,349],{"class":269},[252,437,439,442],{"class":254,"line":438},13,[252,440,441],{"class":265},"  tasks",[252,443,349],{"class":269},[252,445,447,450],{"class":254,"line":446},14,[252,448,449],{"class":269},"    - ",[252,451,452],{"class":292},"clean\n",[252,454,456,458],{"class":254,"line":455},15,[252,457,449],{"class":269},[252,459,460],{"class":292},"script\n",[252,462,464,466],{"class":254,"line":463},16,[252,465,372],{"class":269},[252,467,468],{"class":292},"touch file1A.txt\n",[252,470,472],{"class":254,"line":471},17,[252,473,428],{"emptyLinePlaceholder":427},[252,475,477,480],{"class":254,"line":476},18,[252,478,479],{"class":265},"Job 1B",[252,481,349],{"class":269},[252,483,485,487],{"class":254,"line":484},19,[252,486,441],{"class":265},[252,488,349],{"class":269},[252,490,492,494],{"class":254,"line":491},20,[252,493,449],{"class":269},[252,495,452],{"class":292},[252,497,499,501],{"class":254,"line":498},21,[252,500,449],{"class":269},[252,502,460],{"class":292},[252,504,506,508],{"class":254,"line":505},22,[252,507,372],{"class":269},[252,509,510],{"class":292},"touch file1B.txt\n",[252,512,514],{"class":254,"line":513},23,[252,515,428],{"emptyLinePlaceholder":427},[252,517,519,521],{"class":254,"line":518},24,[252,520,411],{"class":265},[252,522,349],{"class":269},[252,524,526,528],{"class":254,"line":525},25,[252,527,441],{"class":265},[252,529,349],{"class":269},[252,531,533,535],{"class":254,"line":532},26,[252,534,449],{"class":269},[252,536,452],{"class":292},[252,538,540,542],{"class":254,"line":539},27,[252,541,449],{"class":269},[252,543,460],{"class":292},[252,545,547,549],{"class":254,"line":546},28,[252,548,372],{"class":269},[252,550,551],{"class":292},"touch file2A.txt\n",[252,553,555],{"class":254,"line":554},29,[252,556,428],{"emptyLinePlaceholder":427},[252,558,560,563],{"class":254,"line":559},30,[252,561,562],{"class":265},"Job 2B",[252,564,349],{"class":269},[252,566,568,570],{"class":254,"line":567},31,[252,569,441],{"class":265},[252,571,349],{"class":269},[252,573,575,577],{"class":254,"line":574},32,[252,576,449],{"class":269},[252,578,452],{"class":292},[252,580,582,584],{"class":254,"line":581},33,[252,583,449],{"class":269},[252,585,460],{"class":292},[252,587,589,591],{"class":254,"line":588},34,[252,590,372],{"class":269},[252,592,593],{"class":292},"touch file2B.txt\n",[12,595,596],{},"In GitLab, you list your stages in the order in which you want their jobs to run:",[243,598,600],{"className":245,"code":599,"language":247,"meta":248,"style":248},"stages:\n  - build\n  - test\n  - deploy\n\njob1:\n  stage: build\n  script:\n    - echo \"This job compiles code.\"\n\njob2:\n  stage: test\n  script:\n    - echo \"This job tests the compiled code. It runs when the build stage completes.\"\n\njob3:\n  script:\n    - echo \"This job also runs in the test stage\".\n\njob4:\n  stage: deploy\n  script:\n    - echo \"This job deploys the code. It runs when the test stage completes.\"\n  environment: production\n\n",[63,601,602,608,615,622,629,633,640,649,656,663,667,674,682,688,695,699,706,712,719,723,730,738,744,751],{"__ignoreMap":248},[252,603,604,606],{"class":254,"line":255},[252,605,325],{"class":265},[252,607,349],{"class":269},[252,609,610,612],{"class":254,"line":262},[252,611,354],{"class":269},[252,613,614],{"class":292},"build\n",[252,616,617,619],{"class":254,"line":277},[252,618,354],{"class":269},[252,620,621],{"class":292},"test\n",[252,623,624,626],{"class":254,"line":284},[252,625,354],{"class":269},[252,627,628],{"class":292},"deploy\n",[252,630,631],{"class":254,"line":369},[252,632,428],{"emptyLinePlaceholder":427},[252,634,635,638],{"class":254,"line":381},[252,636,637],{"class":265},"job1",[252,639,349],{"class":269},[252,641,642,645,647],{"class":254,"line":389},[252,643,644],{"class":265},"  stage",[252,646,270],{"class":269},[252,648,614],{"class":292},[252,650,651,654],{"class":254,"line":399},[252,652,653],{"class":265},"  script",[252,655,349],{"class":269},[252,657,658,660],{"class":254,"line":406},[252,659,449],{"class":269},[252,661,662],{"class":292},"echo \"This job compiles code.\"\n",[252,664,665],{"class":254,"line":416},[252,666,428],{"emptyLinePlaceholder":427},[252,668,669,672],{"class":254,"line":424},[252,670,671],{"class":265},"job2",[252,673,349],{"class":269},[252,675,676,678,680],{"class":254,"line":431},[252,677,644],{"class":265},[252,679,270],{"class":269},[252,681,621],{"class":292},[252,683,684,686],{"class":254,"line":438},[252,685,653],{"class":265},[252,687,349],{"class":269},[252,689,690,692],{"class":254,"line":446},[252,691,449],{"class":269},[252,693,694],{"class":292},"echo \"This job tests the compiled code. It runs when the build stage completes.\"\n",[252,696,697],{"class":254,"line":455},[252,698,428],{"emptyLinePlaceholder":427},[252,700,701,704],{"class":254,"line":463},[252,702,703],{"class":265},"job3",[252,705,349],{"class":269},[252,707,708,710],{"class":254,"line":471},[252,709,653],{"class":265},[252,711,349],{"class":269},[252,713,714,716],{"class":254,"line":476},[252,715,449],{"class":269},[252,717,718],{"class":292},"echo \"This job also runs in the test stage\".\n",[252,720,721],{"class":254,"line":484},[252,722,428],{"emptyLinePlaceholder":427},[252,724,725,728],{"class":254,"line":491},[252,726,727],{"class":265},"job4",[252,729,349],{"class":269},[252,731,732,734,736],{"class":254,"line":498},[252,733,644],{"class":265},[252,735,270],{"class":269},[252,737,628],{"class":292},[252,739,740,742],{"class":254,"line":505},[252,741,653],{"class":265},[252,743,349],{"class":269},[252,745,746,748],{"class":254,"line":513},[252,747,449],{"class":269},[252,749,750],{"class":292},"echo \"This job deploys the code. It runs when the test stage completes.\"\n",[252,752,753,756,758],{"class":254,"line":518},[252,754,755],{"class":265},"  environment",[252,757,270],{"class":269},[252,759,760],{"class":292},"production\n",[12,762,763,764,24],{},"All the jobs in a stage run in parallel and when they succeed, execution proceeds to the next stage. This only changes in complex pipelines where a job depends on another using ",[19,765,768],{"href":766,"rel":767},"https://docs.gitlab.com/ci/yaml/#needs",[],[63,769,770],{},"needs",[46,772,774],{"id":773},"variables","Variables",[12,776,777,778,781,782,785],{},"Bamboo has System, Global, Project, Plan, and Build-specific variables, which can be accessed using the format ",[63,779,780],{},"${system.variableName}"," for system variables and ",[63,783,784],{},"${bamboo.variableName}"," for others. Periods (.) are replaced by underscores (_) when variables are accessed in scripts.",[243,787,789],{"className":245,"code":788,"language":247,"meta":248,"style":248},"version: 2\n# ...\nvariables:\n  username: admin\n  releaseType: milestone\n\nDefault job:\n  tasks:\n    - script: echo 'Release Type is $bamboo_releaseType'\n\n",[63,790,791,799,803,809,819,829,833,840,846],{"__ignoreMap":248},[252,792,793,795,797],{"class":254,"line":255},[252,794,266],{"class":265},[252,796,270],{"class":269},[252,798,274],{"class":273},[252,800,801],{"class":254,"line":262},[252,802,281],{"class":280},[252,804,805,807],{"class":254,"line":277},[252,806,773],{"class":265},[252,808,349],{"class":269},[252,810,811,814,816],{"class":254,"line":284},[252,812,813],{"class":265},"  username",[252,815,270],{"class":269},[252,817,818],{"class":292},"admin\n",[252,820,821,824,826],{"class":254,"line":369},[252,822,823],{"class":265},"  releaseType",[252,825,270],{"class":269},[252,827,828],{"class":292},"milestone\n",[252,830,831],{"class":254,"line":381},[252,832,428],{"emptyLinePlaceholder":427},[252,834,835,838],{"class":254,"line":389},[252,836,837],{"class":265},"Default job",[252,839,349],{"class":269},[252,841,842,844],{"class":254,"line":399},[252,843,441],{"class":265},[252,845,349],{"class":269},[252,847,848,850,853,855],{"class":254,"line":406},[252,849,449],{"class":269},[252,851,852],{"class":265},"script",[252,854,270],{"class":269},[252,856,857],{"class":292},"echo 'Release Type is $bamboo_releaseType'\n",[12,859,860,861,866,867,24],{},"In GitLab, variables can be defined at group, project, CI Script, and job levels. In GitLab self-managed and GitLab Dedicated, administrators can define variables at the instance level. GitLab allows protecting, masking, and expanding variables. Protected variables are only accessible for pipelines running against the default or protected branches. ",[19,862,865],{"href":863,"rel":864},"https://docs.gitlab.com/ci/variables/",[],"Learn more about CI/CD variables"," and ",[19,868,871],{"href":869,"rel":870},"https://docs.gitlab.com/ci/variables/where_variables_can_be_used/",[],"where you can use them",[12,873,874],{},"Here is an example:",[243,876,878],{"className":245,"code":877,"language":247,"meta":248,"style":248},"variables:\n  GLOBAL_VAR: \"A global variable\"\n\njob1:\n  variables:\n    JOB_VAR: \"A job variable\"\n  script:\n    - echo \"Variables are '$GLOBAL_VAR' and '$JOB_VAR'\"\n\njob2:\n  script:\n    - echo \"Variables are '$GLOBAL_VAR' and '$JOB_VAR'\"\n\n",[63,879,880,886,896,900,906,913,923,929,936,940,946,952],{"__ignoreMap":248},[252,881,882,884],{"class":254,"line":255},[252,883,773],{"class":265},[252,885,349],{"class":269},[252,887,888,891,893],{"class":254,"line":262},[252,889,890],{"class":265},"  GLOBAL_VAR",[252,892,270],{"class":269},[252,894,895],{"class":292},"\"A global variable\"\n",[252,897,898],{"class":254,"line":277},[252,899,428],{"emptyLinePlaceholder":427},[252,901,902,904],{"class":254,"line":284},[252,903,637],{"class":265},[252,905,349],{"class":269},[252,907,908,911],{"class":254,"line":369},[252,909,910],{"class":265},"  variables",[252,912,349],{"class":269},[252,914,915,918,920],{"class":254,"line":381},[252,916,917],{"class":265},"    JOB_VAR",[252,919,270],{"class":269},[252,921,922],{"class":292},"\"A job variable\"\n",[252,924,925,927],{"class":254,"line":389},[252,926,653],{"class":265},[252,928,349],{"class":269},[252,930,931,933],{"class":254,"line":399},[252,932,449],{"class":269},[252,934,935],{"class":292},"echo \"Variables are '$GLOBAL_VAR' and '$JOB_VAR'\"\n",[252,937,938],{"class":254,"line":406},[252,939,428],{"emptyLinePlaceholder":427},[252,941,942,944],{"class":254,"line":416},[252,943,671],{"class":265},[252,945,349],{"class":269},[252,947,948,950],{"class":254,"line":424},[252,949,653],{"class":265},[252,951,349],{"class":269},[252,953,954,956],{"class":254,"line":431},[252,955,449],{"class":269},[252,957,935],{"class":292},[46,959,961],{"id":960},"build-jobs","Build Jobs",[12,963,964],{},"Bamboo Build Jobs are composed of tasks, each of which is a small unit of work that can be anything from checking out source code to injecting variables or running a script.",[243,966,968],{"className":245,"code":967,"language":247,"meta":248,"style":248},"version: 2\nstages:\n  - Run Tests:\n      jobs:\n        - Test Ruby \n\nTest Ruby :\n  key: TEST\n  tasks:\n  - checkout:\n      force-clean-build: false\n      description: Checkout Default Repository\n  - script:\n      interpreter: SHELL\n      scripts:\n      - |-\n        ruby -v  # Print out ruby version for debugging\n        bundle config set --local deployment true  \n        bundle install -j $(nproc)\n        rubocop\n        rspec spec\n      description: run bundler & rspec\n\n",[63,969,970,978,984,993,999,1008,1012,1019,1029,1035,1044,1054,1064,1072,1082,1089,1098,1103,1108,1113,1118,1123],{"__ignoreMap":248},[252,971,972,974,976],{"class":254,"line":255},[252,973,266],{"class":265},[252,975,270],{"class":269},[252,977,274],{"class":273},[252,979,980,982],{"class":254,"line":262},[252,981,325],{"class":265},[252,983,349],{"class":269},[252,985,986,988,991],{"class":254,"line":277},[252,987,354],{"class":269},[252,989,990],{"class":265},"Run Tests",[252,992,349],{"class":269},[252,994,995,997],{"class":254,"line":284},[252,996,364],{"class":265},[252,998,349],{"class":269},[252,1000,1001,1003,1006],{"class":254,"line":369},[252,1002,372],{"class":269},[252,1004,1005],{"class":292},"Test Ruby",[252,1007,378],{"class":269},[252,1009,1010],{"class":254,"line":381},[252,1011,428],{"emptyLinePlaceholder":427},[252,1013,1014,1016],{"class":254,"line":389},[252,1015,1005],{"class":265},[252,1017,1018],{"class":269}," :\n",[252,1020,1021,1024,1026],{"class":254,"line":399},[252,1022,1023],{"class":265},"  key",[252,1025,270],{"class":269},[252,1027,1028],{"class":292},"TEST\n",[252,1030,1031,1033],{"class":254,"line":406},[252,1032,441],{"class":265},[252,1034,349],{"class":269},[252,1036,1037,1039,1042],{"class":254,"line":416},[252,1038,354],{"class":269},[252,1040,1041],{"class":265},"checkout",[252,1043,349],{"class":269},[252,1045,1046,1049,1051],{"class":254,"line":424},[252,1047,1048],{"class":265},"      force-clean-build",[252,1050,270],{"class":269},[252,1052,1053],{"class":273},"false\n",[252,1055,1056,1059,1061],{"class":254,"line":431},[252,1057,1058],{"class":265},"      description",[252,1060,270],{"class":269},[252,1062,1063],{"class":292},"Checkout Default Repository\n",[252,1065,1066,1068,1070],{"class":254,"line":438},[252,1067,354],{"class":269},[252,1069,852],{"class":265},[252,1071,349],{"class":269},[252,1073,1074,1077,1079],{"class":254,"line":446},[252,1075,1076],{"class":265},"      interpreter",[252,1078,270],{"class":269},[252,1080,1081],{"class":292},"SHELL\n",[252,1083,1084,1087],{"class":254,"line":455},[252,1085,1086],{"class":265},"      scripts",[252,1088,349],{"class":269},[252,1090,1091,1094],{"class":254,"line":463},[252,1092,1093],{"class":269},"      - ",[252,1095,1097],{"class":1096},"sD7c4","|-\n",[252,1099,1100],{"class":254,"line":471},[252,1101,1102],{"class":292},"        ruby -v  # Print out ruby version for debugging\n",[252,1104,1105],{"class":254,"line":476},[252,1106,1107],{"class":292},"        bundle config set --local deployment true  \n",[252,1109,1110],{"class":254,"line":484},[252,1111,1112],{"class":292},"        bundle install -j $(nproc)\n",[252,1114,1115],{"class":254,"line":491},[252,1116,1117],{"class":292},"        rubocop\n",[252,1119,1120],{"class":254,"line":498},[252,1121,1122],{"class":292},"        rspec spec\n",[252,1124,1125,1127,1129],{"class":254,"line":505},[252,1126,1058],{"class":265},[252,1128,270],{"class":269},[252,1130,1131],{"class":292},"run bundler & rspec\n",[12,1133,1134],{},"In this example, the plan has two tasks, checkout and script. The checkout tasks pull an updated version of the code repository, which is made available for the script task to execute its commands against.",[12,1136,1137,1142],{},[19,1138,1141],{"href":1139,"rel":1140},"https://docs.gitlab.com/ci/jobs/",[],"Jobs in GitLab"," are composed of script commands:",[243,1144,1149],{"className":1145,"code":1147,"language":1148,"meta":248},[1146],"language-text","image: ruby:latest\n\nstages:\n  - test\n\nrspec:\n  stage: test\n  script:\n    - ruby -v\n    - bundle config set --local deployment true \n    - bundle install -j $(nproc)\n    - rubocop\n    - rspec spec\n\n","text",[63,1150,1147],{"__ignoreMap":248},[12,1152,1153,1154,1157,1158,24],{},"In the example above, the stage the job belongs to is specified with the ",[63,1155,1156],{},"stage"," keyword and the commands to be executed by the GitLab runner for the job are listed under ",[63,1159,852],{},[12,1161,1162,1163,1168],{},"In Bamboo, you can use ",[19,1164,1167],{"href":1165,"rel":1166},"https://confluence.atlassian.com/bamboo/defining-a-new-executable-capability-289277164.html",[],"executables",", such as Ant, Maven, or PHPUnit, in a task to build your application. In GitLab, you can package the binaries you need in a custom container image and use it as your CI/CD image.",[46,1170,1172],{"id":1171},"deployment-jobs","Deployment jobs",[12,1174,1175],{},"In Bamboo, Deployment projects organize software releases or environments applications are deployed to. A deployment plan can have a release definition:",[243,1177,1179],{"className":245,"code":1178,"language":247,"meta":248,"style":248},"---\nversion: 2\n\ndeployment:\n  name: Release Software\n  source-plan: BUILD-APP\n\nrelease-naming: release-1.1\n",[63,1180,1181,1185,1193,1197,1204,1214,1224,1228],{"__ignoreMap":248},[252,1182,1183],{"class":254,"line":255},[252,1184,259],{"class":258},[252,1186,1187,1189,1191],{"class":254,"line":262},[252,1188,266],{"class":265},[252,1190,270],{"class":269},[252,1192,274],{"class":273},[252,1194,1195],{"class":254,"line":277},[252,1196,428],{"emptyLinePlaceholder":427},[252,1198,1199,1202],{"class":254,"line":284},[252,1200,1201],{"class":265},"deployment",[252,1203,349],{"class":269},[252,1205,1206,1209,1211],{"class":254,"line":369},[252,1207,1208],{"class":265},"  name",[252,1210,270],{"class":269},[252,1212,1213],{"class":292},"Release Software\n",[252,1215,1216,1219,1221],{"class":254,"line":381},[252,1217,1218],{"class":265},"  source-plan",[252,1220,270],{"class":269},[252,1222,1223],{"class":292},"BUILD-APP\n",[252,1225,1226],{"class":254,"line":389},[252,1227,428],{"emptyLinePlaceholder":427},[252,1229,1230,1233,1235],{"class":254,"line":399},[252,1231,1232],{"class":265},"release-naming",[252,1234,270],{"class":269},[252,1236,1237],{"class":292},"release-1.1\n",[12,1239,1240],{},"For releases, you specify the plan it should get the generated artifacts from. And for deployment for environments:",[243,1242,1244],{"className":245,"code":1243,"language":247,"meta":248,"style":248},"---\nversion: 2\n# ...\nenvironments:\n  - Test\n  - QA\n  - Prod\n\nTest:\n  tasks:\n    - clean\n    - artifact-download:\n        destination: /workdir\n\n",[63,1245,1246,1250,1258,1262,1269,1276,1283,1290,1294,1301,1307,1313,1322],{"__ignoreMap":248},[252,1247,1248],{"class":254,"line":255},[252,1249,259],{"class":258},[252,1251,1252,1254,1256],{"class":254,"line":262},[252,1253,266],{"class":265},[252,1255,270],{"class":269},[252,1257,274],{"class":273},[252,1259,1260],{"class":254,"line":277},[252,1261,281],{"class":280},[252,1263,1264,1267],{"class":254,"line":284},[252,1265,1266],{"class":265},"environments",[252,1268,349],{"class":269},[252,1270,1271,1273],{"class":254,"line":369},[252,1272,354],{"class":269},[252,1274,1275],{"class":292},"Test\n",[252,1277,1278,1280],{"class":254,"line":381},[252,1279,354],{"class":269},[252,1281,1282],{"class":292},"QA\n",[252,1284,1285,1287],{"class":254,"line":389},[252,1286,354],{"class":269},[252,1288,1289],{"class":292},"Prod\n",[252,1291,1292],{"class":254,"line":399},[252,1293,428],{"emptyLinePlaceholder":427},[252,1295,1296,1299],{"class":254,"line":406},[252,1297,1298],{"class":265},"Test",[252,1300,349],{"class":269},[252,1302,1303,1305],{"class":254,"line":416},[252,1304,441],{"class":265},[252,1306,349],{"class":269},[252,1308,1309,1311],{"class":254,"line":424},[252,1310,449],{"class":269},[252,1312,452],{"class":292},[252,1314,1315,1317,1320],{"class":254,"line":431},[252,1316,449],{"class":269},[252,1318,1319],{"class":265},"artifact-download",[252,1321,349],{"class":269},[252,1323,1324,1327,1329],{"class":254,"line":438},[252,1325,1326],{"class":265},"        destination",[252,1328,270],{"class":269},[252,1330,1331],{"class":292},"/workdir\n",[12,1333,1334,1335,1340,1341,1345,1346,1351,1352,1358],{},"In GitLab CI/CD, you can create a ",[19,1336,1339],{"href":1337,"rel":1338},"https://docs.gitlab.com/ci/jobs/#deployment-jobs",[],"deployment job","\nthat deploys to an ",[19,1342,1344],{"href":83,"rel":1343},[],"environment"," or create a ",[19,1347,1350],{"href":1348,"rel":1349},"https://docs.gitlab.com/user/project/releases/",[],"release",".\nFor deploying to an environment, you use the ",[19,1353,1356],{"href":1354,"rel":1355},"https://docs.gitlab.com/ci/yaml/#environment",[],[63,1357,1344],{}," keyword:",[243,1360,1362],{"className":245,"code":1361,"language":247,"meta":248,"style":248},"deploy-to-production:\n  stage: deploy\n  script:\n    - # Run Deployment script\n    - ./.ci/deploy_prod.sh\n  environment:\n    name: production\n\n",[63,1363,1364,1371,1379,1385,1392,1399,1405],{"__ignoreMap":248},[252,1365,1366,1369],{"class":254,"line":255},[252,1367,1368],{"class":265},"deploy-to-production",[252,1370,349],{"class":269},[252,1372,1373,1375,1377],{"class":254,"line":262},[252,1374,644],{"class":265},[252,1376,270],{"class":269},[252,1378,628],{"class":292},[252,1380,1381,1383],{"class":254,"line":277},[252,1382,653],{"class":265},[252,1384,349],{"class":269},[252,1386,1387,1389],{"class":254,"line":284},[252,1388,449],{"class":269},[252,1390,1391],{"class":280},"# Run Deployment script\n",[252,1393,1394,1396],{"class":254,"line":369},[252,1395,449],{"class":269},[252,1397,1398],{"class":292},"./.ci/deploy_prod.sh\n",[252,1400,1401,1403],{"class":254,"line":381},[252,1402,755],{"class":265},[252,1404,349],{"class":269},[252,1406,1407,1410,1412],{"class":254,"line":389},[252,1408,1409],{"class":265},"    name",[252,1411,270],{"class":269},[252,1413,760],{"class":292},[12,1415,1416,1417,1423,1424,1429,1430,1435,1436,1438,1439,1441,1442,1445],{},"If you are creating a release instead, you use the ",[19,1418,1421],{"href":1419,"rel":1420},"https://docs.gitlab.com/ci/yaml/#release",[],[63,1422,1350],{},"\nkeyword along with the ",[19,1425,1428],{"href":1426,"rel":1427},"https://gitlab.com/gitlab-org/release-cli/-/tree/master/docs",[],"release-cli","\ntool to create releases for ",[19,1431,1434],{"href":1432,"rel":1433},"https://docs.gitlab.com/user/project/repository/tags/",[],"Git tags",".\nThe ",[63,1437,1350],{}," section is executed after the ",[63,1440,852],{}," section, which must exist.\nIf you don’t have any script commands to run, you can put a placeholder command;\nfor example, ",[63,1443,1444],{},"echo"," a message.",[243,1447,1449],{"className":245,"code":1448,"language":247,"meta":248,"style":248},"release_job:\n  stage: release\n  image: registry.gitlab.com/gitlab-org/release-cli:latest\n  rules:\n    - if: $CI_COMMIT_TAG                  # Run this job when a tag is created manually\n  script:\n    - echo \"Building release version\"\n  release:\n    tag_name: $CI_COMMIT_TAG\n    name: 'Release $CI_COMMIT_TAG'\n    description: 'Release created using the release-cli.'\n\n",[63,1450,1451,1458,1467,1477,1484,1499,1505,1512,1519,1529,1538],{"__ignoreMap":248},[252,1452,1453,1456],{"class":254,"line":255},[252,1454,1455],{"class":265},"release_job",[252,1457,349],{"class":269},[252,1459,1460,1462,1464],{"class":254,"line":262},[252,1461,644],{"class":265},[252,1463,270],{"class":269},[252,1465,1466],{"class":292},"release\n",[252,1468,1469,1472,1474],{"class":254,"line":277},[252,1470,1471],{"class":265},"  image",[252,1473,270],{"class":269},[252,1475,1476],{"class":292},"registry.gitlab.com/gitlab-org/release-cli:latest\n",[252,1478,1479,1482],{"class":254,"line":284},[252,1480,1481],{"class":265},"  rules",[252,1483,349],{"class":269},[252,1485,1486,1488,1491,1493,1496],{"class":254,"line":369},[252,1487,449],{"class":269},[252,1489,1490],{"class":265},"if",[252,1492,270],{"class":269},[252,1494,1495],{"class":292},"$CI_COMMIT_TAG",[252,1497,1498],{"class":280},"                  # Run this job when a tag is created manually\n",[252,1500,1501,1503],{"class":254,"line":381},[252,1502,653],{"class":265},[252,1504,349],{"class":269},[252,1506,1507,1509],{"class":254,"line":389},[252,1508,449],{"class":269},[252,1510,1511],{"class":292},"echo \"Building release version\"\n",[252,1513,1514,1517],{"class":254,"line":399},[252,1515,1516],{"class":265},"  release",[252,1518,349],{"class":269},[252,1520,1521,1524,1526],{"class":254,"line":406},[252,1522,1523],{"class":265},"    tag_name",[252,1525,270],{"class":269},[252,1527,1528],{"class":292},"$CI_COMMIT_TAG\n",[252,1530,1531,1533,1535],{"class":254,"line":416},[252,1532,1409],{"class":265},[252,1534,270],{"class":269},[252,1536,1537],{"class":292},"'Release $CI_COMMIT_TAG'\n",[252,1539,1540,1543,1545],{"class":254,"line":424},[252,1541,1542],{"class":265},"    description",[252,1544,270],{"class":269},[252,1546,1547],{"class":292},"'Release created using the release-cli.'\n",[46,1549,1551],{"id":1550},"rules-and-workflows","Rules and workflows",[12,1553,1554],{},"In Bamboo, triggers can be used to control how Jobs are executed. Triggers can be a periodic poll of the repository for changes or a webhook that notifies Bamboo of changes to the repository. Trigger conditions can be enabled in the Bamboo web UI to make sure the build only runs if other plans are passing.",[12,1556,1557],{},"Example of a trigger:",[243,1559,1561],{"className":245,"code":1560,"language":247,"meta":248,"style":248},"---\nversion: 2\ntriggers:\n  - polling: 130\n  - cron: 0 * * * ? *\n\n",[63,1562,1563,1567,1575,1582,1594],{"__ignoreMap":248},[252,1564,1565],{"class":254,"line":255},[252,1566,259],{"class":258},[252,1568,1569,1571,1573],{"class":254,"line":262},[252,1570,266],{"class":265},[252,1572,270],{"class":269},[252,1574,274],{"class":273},[252,1576,1577,1580],{"class":254,"line":277},[252,1578,1579],{"class":265},"triggers",[252,1581,349],{"class":269},[252,1583,1584,1586,1589,1591],{"class":254,"line":284},[252,1585,354],{"class":269},[252,1587,1588],{"class":265},"polling",[252,1590,270],{"class":269},[252,1592,1593],{"class":273},"130\n",[252,1595,1596,1598,1601,1603],{"class":254,"line":369},[252,1597,354],{"class":269},[252,1599,1600],{"class":265},"cron",[252,1602,270],{"class":269},[252,1604,1605],{"class":292},"0 * * * ? *\n",[12,1607,1608,1609,1614,1615,1620,1621,1623,1624,1627,1628,866,1633,1638],{},"In GitLab, ",[19,1610,1613],{"href":1611,"rel":1612},"https://docs.gitlab.com/ci/pipelines/",[],"CI/CD pipelines"," can be triggered by a commit/push, a merge, manually, on schedule, or with ",[19,1616,1619],{"href":1617,"rel":1618},"https://docs.gitlab.com/ci/pipelines/#trigger-a-pipeline-when-an-upstream-project-is-rebuilt",[],"pipeline subscriptions",". Jobs in a pipeline can further be controlled using ",[63,1622,75],{}," or ",[63,1625,1626],{},"workflow",". Learn more about ",[19,1629,1632],{"href":1630,"rel":1631},"https://docs.gitlab.com/ci/jobs/job_control/",[],"Job Control",[19,1634,1637],{"href":1635,"rel":1636},"https://docs.gitlab.com/ci/yaml/workflow/#",[],"pipeline workflows"," in GitLab CI/CD.",[12,1640,1641,1642,1644],{},"Here's an example using ",[63,1643,75],{}," in GitLab CI/CD:",[243,1646,1648],{"className":245,"code":1647,"language":247,"meta":248,"style":248},"workflow:\n  rules:\n    - changes:\n      - .gitlab/**/**.md\n      when: never\n\n",[63,1649,1650,1656,1662,1671,1678],{"__ignoreMap":248},[252,1651,1652,1654],{"class":254,"line":255},[252,1653,1626],{"class":265},[252,1655,349],{"class":269},[252,1657,1658,1660],{"class":254,"line":262},[252,1659,1481],{"class":265},[252,1661,349],{"class":269},[252,1663,1664,1666,1669],{"class":254,"line":277},[252,1665,449],{"class":269},[252,1667,1668],{"class":265},"changes",[252,1670,349],{"class":269},[252,1672,1673,1675],{"class":254,"line":284},[252,1674,1093],{"class":269},[252,1676,1677],{"class":292},".gitlab/**/**.md\n",[252,1679,1680,1683,1685],{"class":254,"line":369},[252,1681,1682],{"class":265},"      when",[252,1684,270],{"class":269},[252,1686,1687],{"class":292},"never\n",[12,1689,1690,1691,1694,1695,1698],{},"In this example, pipelines are never executed when ",[63,1692,1693],{},".md"," files changed in the ",[63,1696,1697],{},".gitlab"," folder.",[1700,1701,1703],"h4",{"id":1702},"artifacts","Artifacts",[12,1705,1706,1707,1709],{},"You can define Job artifacts using the ",[63,1708,1702],{}," keyword in both GitLab and Bamboo.",[12,1711,1712],{},"In Bamboo, artifacts can be defined as follows:",[243,1714,1716],{"className":245,"code":1715,"language":247,"meta":248,"style":248},"---\nversion: 2\n# ...\n  artifacts:\n    -\n      name: Test Reports\n      location: target/reports\n      pattern: '*.xml'\n      required: false\n      shared: false\n    -\n      name: Special Reports\n      location: target/reports\n      pattern: 'special/*.xml'\n      shared: true\n\n",[63,1717,1718,1722,1730,1734,1741,1746,1756,1766,1776,1785,1794,1798,1807,1815,1824],{"__ignoreMap":248},[252,1719,1720],{"class":254,"line":255},[252,1721,259],{"class":258},[252,1723,1724,1726,1728],{"class":254,"line":262},[252,1725,266],{"class":265},[252,1727,270],{"class":269},[252,1729,274],{"class":273},[252,1731,1732],{"class":254,"line":277},[252,1733,281],{"class":280},[252,1735,1736,1739],{"class":254,"line":284},[252,1737,1738],{"class":265},"  artifacts",[252,1740,349],{"class":269},[252,1742,1743],{"class":254,"line":369},[252,1744,1745],{"class":269},"    -\n",[252,1747,1748,1751,1753],{"class":254,"line":381},[252,1749,1750],{"class":265},"      name",[252,1752,270],{"class":269},[252,1754,1755],{"class":292},"Test Reports\n",[252,1757,1758,1761,1763],{"class":254,"line":389},[252,1759,1760],{"class":265},"      location",[252,1762,270],{"class":269},[252,1764,1765],{"class":292},"target/reports\n",[252,1767,1768,1771,1773],{"class":254,"line":399},[252,1769,1770],{"class":265},"      pattern",[252,1772,270],{"class":269},[252,1774,1775],{"class":292},"'*.xml'\n",[252,1777,1778,1781,1783],{"class":254,"line":406},[252,1779,1780],{"class":265},"      required",[252,1782,270],{"class":269},[252,1784,1053],{"class":273},[252,1786,1787,1790,1792],{"class":254,"line":416},[252,1788,1789],{"class":265},"      shared",[252,1791,270],{"class":269},[252,1793,1053],{"class":273},[252,1795,1796],{"class":254,"line":424},[252,1797,1745],{"class":269},[252,1799,1800,1802,1804],{"class":254,"line":431},[252,1801,1750],{"class":265},[252,1803,270],{"class":269},[252,1805,1806],{"class":292},"Special Reports\n",[252,1808,1809,1811,1813],{"class":254,"line":438},[252,1810,1760],{"class":265},[252,1812,270],{"class":269},[252,1814,1765],{"class":292},[252,1816,1817,1819,1821],{"class":254,"line":446},[252,1818,1770],{"class":265},[252,1820,270],{"class":269},[252,1822,1823],{"class":292},"'special/*.xml'\n",[252,1825,1826,1828,1830],{"class":254,"line":455},[252,1827,1789],{"class":265},[252,1829,270],{"class":269},[252,1831,1832],{"class":273},"true\n",[12,1834,1835],{},"In the Bamboo Spec above, artifacts are defined with a name, location, pattern, and optionally\nthe ability to share the artifacts with other jobs or plans. You can go further to define jobs that\ncan subscribe to the artifact.",[12,1837,1838,1841],{},[63,1839,1840],{},"artifact-subscriptions"," is used to access artifacts from another job in the same plan:",[243,1843,1845],{"className":245,"code":1844,"language":247,"meta":248,"style":248},"Test app:\n  artifact-subscriptions:\n    -\n      artifact: Test Reports\n      destination: deploy\n\n",[63,1846,1847,1854,1861,1865,1874],{"__ignoreMap":248},[252,1848,1849,1852],{"class":254,"line":255},[252,1850,1851],{"class":265},"Test app",[252,1853,349],{"class":269},[252,1855,1856,1859],{"class":254,"line":262},[252,1857,1858],{"class":265},"  artifact-subscriptions",[252,1860,349],{"class":269},[252,1862,1863],{"class":254,"line":277},[252,1864,1745],{"class":269},[252,1866,1867,1870,1872],{"class":254,"line":284},[252,1868,1869],{"class":265},"      artifact",[252,1871,270],{"class":269},[252,1873,1755],{"class":292},[252,1875,1876,1879,1881],{"class":254,"line":369},[252,1877,1878],{"class":265},"      destination",[252,1880,270],{"class":269},[252,1882,628],{"class":292},[12,1884,1885,1887],{},[63,1886,1319],{}," is used to access artifacts from jobs in a different plan.",[243,1889,1891],{"className":245,"code":1890,"language":247,"meta":248,"style":248},"---\nversion: 2\n# ...\n  tasks:\n    - artifact-download: \n        source-plan: PROJECTKEY-PLANKEY\n\n",[63,1892,1893,1897,1905,1909,1915,1924],{"__ignoreMap":248},[252,1894,1895],{"class":254,"line":255},[252,1896,259],{"class":258},[252,1898,1899,1901,1903],{"class":254,"line":262},[252,1900,266],{"class":265},[252,1902,270],{"class":269},[252,1904,274],{"class":273},[252,1906,1907],{"class":254,"line":277},[252,1908,281],{"class":280},[252,1910,1911,1913],{"class":254,"line":284},[252,1912,441],{"class":265},[252,1914,349],{"class":269},[252,1916,1917,1919,1921],{"class":254,"line":369},[252,1918,449],{"class":269},[252,1920,1319],{"class":265},[252,1922,1923],{"class":269},": \n",[252,1925,1926,1929,1931],{"class":254,"line":381},[252,1927,1928],{"class":265},"        source-plan",[252,1930,270],{"class":269},[252,1932,1933],{"class":292},"PROJECTKEY-PLANKEY\n",[12,1935,1936,1937,1940],{},"You need to provide the key of the plan you are downloading artifacts from in the ",[63,1938,1939],{},"source-plan"," keyword.",[12,1942,1943],{},"In GitLab, all artifacts from completed jobs in the previous stages are downloaded by default.\nHere is an example of an artifact definition in GitLab:",[243,1945,1947],{"className":245,"code":1946,"language":247,"meta":248,"style":248},"pdf:\n  script: xelatex mycv.tex\n  artifacts:\n    name: \"pdf-files\"\n    public: false\n    untracked: true\n    paths:\n      - pdfs/\n    exclude:\n      - pdfs/*.tex\n\n",[63,1948,1949,1956,1965,1971,1980,1989,1998,2005,2012,2019],{"__ignoreMap":248},[252,1950,1951,1954],{"class":254,"line":255},[252,1952,1953],{"class":265},"pdf",[252,1955,349],{"class":269},[252,1957,1958,1960,1962],{"class":254,"line":262},[252,1959,653],{"class":265},[252,1961,270],{"class":269},[252,1963,1964],{"class":292},"xelatex mycv.tex\n",[252,1966,1967,1969],{"class":254,"line":277},[252,1968,1738],{"class":265},[252,1970,349],{"class":269},[252,1972,1973,1975,1977],{"class":254,"line":284},[252,1974,1409],{"class":265},[252,1976,270],{"class":269},[252,1978,1979],{"class":292},"\"pdf-files\"\n",[252,1981,1982,1985,1987],{"class":254,"line":369},[252,1983,1984],{"class":265},"    public",[252,1986,270],{"class":269},[252,1988,1053],{"class":273},[252,1990,1991,1994,1996],{"class":254,"line":381},[252,1992,1993],{"class":265},"    untracked",[252,1995,270],{"class":269},[252,1997,1832],{"class":273},[252,1999,2000,2003],{"class":254,"line":389},[252,2001,2002],{"class":265},"    paths",[252,2004,349],{"class":269},[252,2006,2007,2009],{"class":254,"line":399},[252,2008,1093],{"class":269},[252,2010,2011],{"class":292},"pdfs/\n",[252,2013,2014,2017],{"class":254,"line":406},[252,2015,2016],{"class":265},"    exclude",[252,2018,349],{"class":269},[252,2020,2021,2023],{"class":254,"line":416},[252,2022,1093],{"class":269},[252,2024,2025],{"class":292},"pdfs/*.tex\n",[12,2027,2028],{},"In the CI/CD script above:",[153,2030,2031,2034,2049],{},[156,2032,2033],{},"The name of the artifact is specified laterally. You can choose to make it dynamic by using a CI/CD variable.",[156,2035,132,2036,2039,2040,2045,2046,24],{},[63,2037,2038],{},"public"," keyword is used to set whether the artifact should be publicly available. This is not enabled by default\non self-managed GitLab instances. An administrator can enable it with the ",[19,2041,2044],{"href":2042,"rel":2043},"https://docs.gitlab.com/administration/feature_flags/",[],"feature flag","\nnamed ",[63,2047,2048],{},"non_public_artifacts",[156,2050,2051,2052,2055,2056,24],{},"You can set the ",[63,2053,2054],{},"untracked"," to include or exclude Git untracked files along with those specified using ",[63,2057,2058],{},"paths",[12,2060,2061,2062,24],{},"Read more about GitLab CI/CD ",[19,2063,2066],{"href":2064,"rel":2065},"https://docs.gitlab.com/ci/jobs/job_artifacts/",[],"job artifacts",[41,2068,2070],{"id":2069},"how-to-plan-your-migration","How to plan your migration",[12,2072,2073,2074,2079],{},"Planning a migration to Gitlab CI/CD from Bamboo doesn't start with converting your Bamboo plan to GitLab CI/CD scripts. It starts with aligning with your leadership and stakeholders and clearly communicating the vision of the migration. ",[19,2075,2078],{"href":2076,"rel":2077},"https://docs.gitlab.com/ci/migration/plan_a_migration/",[],"Check out our documentation to learn more about managing organizational changes",". Once you have the necessary buy-in, you can proceed with the following steps:",[153,2081,2082,2090,2093,2096,2104,2107,2121],{},[156,2083,2084,2089],{},[19,2085,2088],{"href":2086,"rel":2087},"https://docs.gitlab.com/user/import/",[],"Import your projects"," to GitLab.",[156,2091,2092],{},"Identify the necessary binaries and build tools needed to build your application, along with their dependencies.",[156,2094,2095],{},"Define the flow of your pipeline, which jobs depend on each other, and the necessary triggers.",[156,2097,2098,2099,24],{},"Learn more about ",[19,2100,2103],{"href":2101,"rel":2102},"https://docs.gitlab.com/ci/",[],"key GitLab CI/CD features",[156,2105,2106],{},"Identify the credentials and variables needed in your pipeline and define them in the variable section of your project's CI/CD settings or using a secret manager.",[156,2108,2109,2110,2115,2116,24],{},"Follow ",[19,2111,2114],{"href":2112,"rel":2113},"https://docs.gitlab.com/ci/quick_start/",[],"this tutorial"," to create your first GitLab pipeline; you can also explore more ",[19,2117,2120],{"href":2118,"rel":2119},"https://docs.gitlab.com/ci/quick_start/tutorial/",[],"complex pipelines",[156,2122,2123,2124,24],{},"Iterate and test your GitLab CI/CD pipelines and review ",[19,2125,2128],{"href":2126,"rel":2127},"https://docs.gitlab.com/ci/yaml/",[],".gitlab-ci.yml keyword reference",[12,2130,2131,2132,24],{},"Ready to make the move? ",[19,2133,2136],{"href":2134,"rel":2135},"https://about.gitlab.com/sales/",[],"We’re here to help",[2138,2139,2140],"style",{},"html pre.shiki code .s7eDp, html code.shiki .s7eDp{--shiki-default:#6F42C1}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 .sYu0t, html code.shiki .sYu0t{--shiki-default:#005CC5}html pre.shiki code .sAwPA, html code.shiki .sAwPA{--shiki-default:#6A737D}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);}html pre.shiki code .sD7c4, html code.shiki .sD7c4{--shiki-default:#D73A49}",{"title":248,"searchDepth":262,"depth":262,"links":2142},[2143,2148,2149,2157],{"id":43,"depth":262,"text":44,"children":2144},[2145,2146,2147],{"id":48,"depth":277,"text":49},{"id":89,"depth":277,"text":90},{"id":125,"depth":277,"text":126},{"id":147,"depth":262,"text":148},{"id":212,"depth":262,"text":213,"children":2150},[2151,2152,2153,2154,2155,2156],{"id":231,"depth":277,"text":232},{"id":325,"depth":277,"text":326},{"id":773,"depth":277,"text":774},{"id":960,"depth":277,"text":961},{"id":1171,"depth":277,"text":1172},{"id":1550,"depth":277,"text":1551},{"id":2069,"depth":262,"text":2070},"devsecops","2023-10-26","With the fast approaching EOL of Atlassian Server products, including Bamboo, this blog post explains how users of Bamboo can migrate to GitLab CI/CD.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749658924/Blog/Hero%20Images/securitylifecycle-light.png",{},"/en-us/blog/migrating-from-bamboo-to-gitlab-cicd",{"title":5,"description":2160,"ogTitle":5,"ogDescription":2160,"noIndex":2163,"ogImage":2164,"ogUrl":2168,"ogSiteName":2169,"ogType":2170,"canonicalUrls":2168},"https://about.gitlab.com/blog/migrating-from-bamboo-to-gitlab-cicd","https://about.gitlab.com","article","migrating-from-bamboo-to-gitlab-cicd","en-us/blog/migrating-from-bamboo-to-gitlab-cicd",[2174,2175],"DevSecOps","DevSecOps platform","BlogPost","LyQHnBxzVNkxDHcTqE8ussWegRxO6tZxiVbrEMcxjzw",{"logo":2179,"freeTrial":2184,"sales":2189,"login":2194,"items":2199,"search":2525,"minimal":2556,"duo":2575,"switchNav":2584,"pricingDeployment":2595},{"config":2180},{"href":2181,"dataGaName":2182,"dataGaLocation":2183},"/","gitlab logo","header",{"text":2185,"config":2186},"Get free trial",{"href":2187,"dataGaName":2188,"dataGaLocation":2183},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":2190,"config":2191},"Request a demo",{"href":2192,"dataGaName":2193,"dataGaLocation":2183},"/sales/?contact-topic=request-demo","sales",{"text":2195,"config":2196},"Sign in",{"href":2197,"dataGaName":2198,"dataGaLocation":2183},"https://gitlab.com/users/sign_in/","sign in",[2200,2229,2328,2333,2447,2503],{"text":2201,"config":2202,"menu":2204},"Platform",{"dataNavLevelOne":2203},"platform",{"type":2205,"columns":2206},"cards",[2207,2213,2221],{"title":2201,"description":2208,"link":2209},"The intelligent orchestration platform for DevSecOps",{"text":2210,"config":2211},"Explore our Platform",{"href":2212,"dataGaName":2203,"dataGaLocation":2183},"/platform/",{"title":2214,"description":2215,"link":2216},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":2217,"config":2218},"Meet GitLab Duo",{"href":2219,"dataGaName":2220,"dataGaLocation":2183},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":2222,"description":2223,"link":2224},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":2225,"config":2226},"Learn more",{"href":2227,"dataGaName":2228,"dataGaLocation":2183},"/why-gitlab/","why gitlab",{"text":2230,"left":427,"config":2231,"menu":2233},"Product",{"dataNavLevelOne":2232},"solutions",{"type":2234,"link":2235,"columns":2239,"feature":2308},"lists",{"text":2236,"config":2237},"View all Solutions",{"href":2238,"dataGaName":2232,"dataGaLocation":2183},"/solutions/",[2240,2264,2287],{"title":2241,"description":2242,"link":2243,"items":2248},"Automation","CI/CD and automation to accelerate deployment",{"config":2244},{"icon":2245,"href":2246,"dataGaName":2247,"dataGaLocation":2183},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[2249,2253,2256,2260],{"text":2250,"config":2251},"CI/CD",{"href":2252,"dataGaLocation":2183,"dataGaName":2250},"/solutions/continuous-integration/",{"text":2214,"config":2254},{"href":2219,"dataGaLocation":2183,"dataGaName":2255},"gitlab duo agent platform - product menu",{"text":2257,"config":2258},"Source Code Management",{"href":2259,"dataGaLocation":2183,"dataGaName":2257},"/solutions/source-code-management/",{"text":2261,"config":2262},"Automated Software Delivery",{"href":2246,"dataGaLocation":2183,"dataGaName":2263},"Automated software delivery",{"title":2265,"description":2266,"link":2267,"items":2272},"Security","Deliver code faster without compromising security",{"config":2268},{"href":2269,"dataGaName":2270,"dataGaLocation":2183,"icon":2271},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[2273,2277,2282],{"text":2274,"config":2275},"Application Security Testing",{"href":2269,"dataGaName":2276,"dataGaLocation":2183},"Application security testing",{"text":2278,"config":2279},"Software Supply Chain Security",{"href":2280,"dataGaLocation":2183,"dataGaName":2281},"/solutions/supply-chain/","Software supply chain security",{"text":2283,"config":2284},"Software Compliance",{"href":2285,"dataGaName":2286,"dataGaLocation":2183},"/solutions/software-compliance/","software compliance",{"title":2288,"link":2289,"items":2294},"Measurement",{"config":2290},{"icon":2291,"href":2292,"dataGaName":2293,"dataGaLocation":2183},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[2295,2299,2303],{"text":2296,"config":2297},"Visibility & Measurement",{"href":2292,"dataGaLocation":2183,"dataGaName":2298},"Visibility and Measurement",{"text":2300,"config":2301},"Value Stream Management",{"href":2302,"dataGaLocation":2183,"dataGaName":2300},"/solutions/value-stream-management/",{"text":2304,"config":2305},"Analytics & Insights",{"href":2306,"dataGaLocation":2183,"dataGaName":2307},"/solutions/analytics-and-insights/","Analytics and insights",{"title":2309,"type":2234,"items":2310},"GitLab for",[2311,2317,2323],{"text":2312,"config":2313},"Enterprise",{"icon":2314,"href":2315,"dataGaLocation":2183,"dataGaName":2316},"Building","/enterprise/","enterprise",{"text":2318,"config":2319},"Small Business",{"icon":2320,"href":2321,"dataGaLocation":2183,"dataGaName":2322},"Work","/small-business/","small business",{"text":2324,"config":2325},"Public Sector",{"icon":49,"href":2326,"dataGaLocation":2183,"dataGaName":2327},"/solutions/public-sector/","public sector",{"text":2329,"config":2330},"Pricing",{"href":2331,"dataGaName":2332,"dataGaLocation":2183,"dataNavLevelOne":2332},"/pricing/","pricing",{"text":2334,"config":2335,"menu":2337},"Resources",{"dataNavLevelOne":2336},"resources",{"type":2234,"link":2338,"columns":2342,"feature":2436},{"text":2339,"config":2340},"View all resources",{"href":2341,"dataGaName":2336,"dataGaLocation":2183},"/resources/",[2343,2376,2403],{"title":2344,"items":2345},"Getting started",[2346,2351,2356,2361,2366,2371],{"text":2347,"config":2348},"Install",{"href":2349,"dataGaName":2350,"dataGaLocation":2183},"/install/","install",{"text":2352,"config":2353},"Quick start guides",{"href":2354,"dataGaName":2355,"dataGaLocation":2183},"/get-started/","quick setup checklists",{"text":2357,"config":2358},"Learn",{"href":2359,"dataGaLocation":2183,"dataGaName":2360},"https://university.gitlab.com/","learn",{"text":2362,"config":2363},"Product documentation",{"href":2364,"dataGaName":2365,"dataGaLocation":2183},"https://docs.gitlab.com/","product documentation",{"text":2367,"config":2368},"Best practice videos",{"href":2369,"dataGaName":2370,"dataGaLocation":2183},"/getting-started-videos/","best practice videos",{"text":2372,"config":2373},"Integrations",{"href":2374,"dataGaName":2375,"dataGaLocation":2183},"/integrations/","integrations",{"title":2377,"items":2378},"Discover",[2379,2384,2389,2394,2398],{"text":2380,"config":2381},"Customer success stories",{"href":2382,"dataGaName":2383,"dataGaLocation":2183},"/customers/","customer success stories",{"text":2385,"config":2386},"Blog",{"href":2387,"dataGaName":2388,"dataGaLocation":2183},"/blog/","blog",{"text":2390,"config":2391},"Demo Hub",{"href":2392,"dataGaName":2393,"dataGaLocation":2183},"/demo-hub/","demo hub",{"text":2395,"config":2396},"The Source",{"href":2397,"dataGaName":2388,"dataGaLocation":2183},"/the-source/",{"text":2399,"config":2400},"Remote",{"href":2401,"dataGaName":2402,"dataGaLocation":2183},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":2404,"items":2405},"Connect",[2406,2411,2416,2421,2426,2431],{"text":2407,"config":2408},"GitLab Services",{"href":2409,"dataGaName":2410,"dataGaLocation":2183},"/services/","services",{"text":2412,"config":2413},"Contribute",{"href":2414,"dataGaName":2415,"dataGaLocation":2183},"https://contributors.gitlab.com","contribute",{"text":2417,"config":2418},"Community",{"href":2419,"dataGaName":2420,"dataGaLocation":2183},"/community/","community",{"text":2422,"config":2423},"Forum",{"href":2424,"dataGaName":2425,"dataGaLocation":2183},"https://forum.gitlab.com/","forum",{"text":2427,"config":2428},"Events",{"href":2429,"dataGaName":2430,"dataGaLocation":2183},"/events/","events",{"text":2432,"config":2433},"Partners",{"href":2434,"dataGaName":2435,"dataGaLocation":2183},"/partners/","partners",{"config":2437,"title":2440,"text":2441,"link":2442},{"background":2438,"textColor":2439},"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":2443,"config":2444},"Read the latest",{"href":2445,"dataGaName":2446,"dataGaLocation":2183},"/whats-new/","whats new",{"text":2448,"config":2449,"menu":2451},"Company",{"dataNavLevelOne":2450},"company",{"type":2234,"columns":2452},[2453],{"items":2454},[2455,2460,2466,2468,2473,2478,2483,2488,2493,2498],{"text":2456,"config":2457},"About",{"href":2458,"dataGaName":2459,"dataGaLocation":2183},"/company/","about",{"text":2461,"config":2462,"footerGa":2465},"Jobs",{"href":2463,"dataGaName":2464,"dataGaLocation":2183},"/jobs/","jobs",{"dataGaName":2464},{"text":2427,"config":2467},{"href":2429,"dataGaName":2430,"dataGaLocation":2183},{"text":2469,"config":2470},"Leadership",{"href":2471,"dataGaName":2472,"dataGaLocation":2183},"/company/team/e-group/","leadership",{"text":2474,"config":2475},"Handbook",{"href":2476,"dataGaName":2477,"dataGaLocation":2183},"https://handbook.gitlab.com/","handbook",{"text":2479,"config":2480},"Investor relations",{"href":2481,"dataGaName":2482,"dataGaLocation":2183},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":2484,"config":2485},"Trust Center",{"href":2486,"dataGaName":2487,"dataGaLocation":2183},"/security/","trust center",{"text":2489,"config":2490},"AI Transparency Center",{"href":2491,"dataGaName":2492,"dataGaLocation":2183},"/ai-transparency-center/","ai transparency center",{"text":2494,"config":2495},"Newsletter",{"href":2496,"dataGaName":2497,"dataGaLocation":2183},"/company/contact/#contact-forms","newsletter",{"text":2499,"config":2500},"Press",{"href":2501,"dataGaName":2502,"dataGaLocation":2183},"/press/","press",{"text":2504,"config":2505,"menu":2506},"Contact us",{"dataNavLevelOne":2450},{"type":2234,"columns":2507},[2508],{"items":2509},[2510,2515,2520],{"text":2511,"config":2512},"Talk to sales",{"href":2513,"dataGaName":2514,"dataGaLocation":2183},"/sales/","talk to sales",{"text":2516,"config":2517},"Support portal",{"href":2518,"dataGaName":2519,"dataGaLocation":2183},"https://support.gitlab.com/hc/en-us","support portal",{"text":2521,"config":2522},"Customer portal",{"href":2523,"dataGaName":2524,"dataGaLocation":2183},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":2526,"login":2527,"suggestions":2534},"Close",{"text":2528,"link":2529},"To search repositories and projects, login to",{"text":2530,"config":2531},"gitlab.com",{"href":2197,"dataGaName":2532,"dataGaLocation":2533},"search login","search",{"text":2535,"default":2536},"Suggestions",[2537,2539,2543,2545,2549,2553],{"text":2214,"config":2538},{"href":2219,"dataGaName":2214,"dataGaLocation":2533},{"text":2540,"config":2541},"Code Suggestions (AI)",{"href":2542,"dataGaName":2540,"dataGaLocation":2533},"/solutions/code-suggestions/",{"text":2250,"config":2544},{"href":2252,"dataGaName":2250,"dataGaLocation":2533},{"text":2546,"config":2547},"GitLab on AWS",{"href":2548,"dataGaName":2546,"dataGaLocation":2533},"/partners/technology-partners/aws/",{"text":2550,"config":2551},"GitLab on Google Cloud",{"href":2552,"dataGaName":2550,"dataGaLocation":2533},"/partners/technology-partners/google-cloud-platform/",{"text":2554,"config":2555},"Why GitLab?",{"href":2227,"dataGaName":2554,"dataGaLocation":2533},{"freeTrial":2557,"mobileIcon":2562,"desktopIcon":2567,"secondaryButton":2570},{"text":2558,"config":2559},"Start free trial",{"href":2560,"dataGaName":2188,"dataGaLocation":2561},"https://gitlab.com/-/trials/new/","nav",{"altText":2563,"config":2564},"Gitlab Icon",{"src":2565,"dataGaName":2566,"dataGaLocation":2561},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":2563,"config":2568},{"src":2569,"dataGaName":2566,"dataGaLocation":2561},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":2571,"config":2572},"Get Started",{"href":2573,"dataGaName":2574,"dataGaLocation":2561},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":2576,"mobileIcon":2580,"desktopIcon":2582},{"text":2577,"config":2578},"Learn more about GitLab Duo",{"href":2219,"dataGaName":2579,"dataGaLocation":2561},"gitlab duo",{"altText":2563,"config":2581},{"src":2565,"dataGaName":2566,"dataGaLocation":2561},{"altText":2563,"config":2583},{"src":2569,"dataGaName":2566,"dataGaLocation":2561},{"button":2585,"mobileIcon":2590,"desktopIcon":2592},{"text":2586,"config":2587},"/switch",{"href":2588,"dataGaName":2589,"dataGaLocation":2561},"#contact","switch",{"altText":2563,"config":2591},{"src":2565,"dataGaName":2566,"dataGaLocation":2561},{"altText":2563,"config":2593},{"src":2594,"dataGaName":2566,"dataGaLocation":2561},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":2596,"mobileIcon":2601,"desktopIcon":2603},{"text":2597,"config":2598},"Back to pricing",{"href":2331,"dataGaName":2599,"dataGaLocation":2561,"icon":2600},"back to pricing","GoBack",{"altText":2563,"config":2602},{"src":2565,"dataGaName":2566,"dataGaLocation":2561},{"altText":2563,"config":2604},{"src":2569,"dataGaName":2566,"dataGaLocation":2561},{"title":2606,"titleMobile":2607,"button":2608,"config":2613},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":2225,"config":2609},{"href":2610,"dataGaName":2611,"dataGaLocation":2612},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":1350,"disabled":2163},{"data":2615},{"text":2616,"source":2617,"edit":2623,"contribute":2628,"config":2633,"items":2638,"minimal":2845},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":2618,"config":2619},"View page source",{"href":2620,"dataGaName":2621,"dataGaLocation":2622},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":2624,"config":2625},"Edit this page",{"href":2626,"dataGaName":2627,"dataGaLocation":2622},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":2629,"config":2630},"Please contribute",{"href":2631,"dataGaName":2632,"dataGaLocation":2622},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":2634,"facebook":2635,"youtube":2636,"linkedin":2637},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[2639,2686,2737,2781,2813],{"title":2329,"links":2640,"subMenu":2655},[2641,2645,2650],{"text":2642,"config":2643},"View plans",{"href":2331,"dataGaName":2644,"dataGaLocation":2622},"view plans",{"text":2646,"config":2647},"Why Premium?",{"href":2648,"dataGaName":2649,"dataGaLocation":2622},"/pricing/premium/","why premium",{"text":2651,"config":2652},"Why Ultimate?",{"href":2653,"dataGaName":2654,"dataGaLocation":2622},"/pricing/ultimate/","why ultimate",[2656],{"title":2657,"links":2658},"Contact Us",[2659,2662,2664,2666,2671,2676,2681],{"text":2660,"config":2661},"Contact sales",{"href":2513,"dataGaName":2193,"dataGaLocation":2622},{"text":2516,"config":2663},{"href":2518,"dataGaName":2519,"dataGaLocation":2622},{"text":2521,"config":2665},{"href":2523,"dataGaName":2524,"dataGaLocation":2622},{"text":2667,"config":2668},"Status",{"href":2669,"dataGaName":2670,"dataGaLocation":2622},"https://status.gitlab.com/","status",{"text":2672,"config":2673},"Terms of use",{"href":2674,"dataGaName":2675,"dataGaLocation":2622},"/terms/","terms of use",{"text":2677,"config":2678},"Privacy statement",{"href":2679,"dataGaName":2680,"dataGaLocation":2622},"/privacy/","privacy statement",{"text":2682,"config":2683},"Cookie preferences",{"dataGaName":2684,"dataGaLocation":2622,"id":2685,"isOneTrustButton":427},"cookie preferences","ot-sdk-btn",{"title":2230,"links":2687,"subMenu":2695},[2688,2691],{"text":2175,"config":2689},{"href":2212,"dataGaName":2690,"dataGaLocation":2622},"devsecops platform",{"text":2692,"config":2693},"AI-Assisted Development",{"href":2219,"dataGaName":2694,"dataGaLocation":2622},"ai-assisted development",[2696],{"title":2697,"links":2698},"Topics",[2699,2704,2709,2714,2719,2722,2727,2732],{"text":2700,"config":2701},"CICD",{"href":2702,"dataGaName":2703,"dataGaLocation":2622},"/topics/ci-cd/","cicd",{"text":2705,"config":2706},"GitOps",{"href":2707,"dataGaName":2708,"dataGaLocation":2622},"/topics/gitops/","gitops",{"text":2710,"config":2711},"DevOps",{"href":2712,"dataGaName":2713,"dataGaLocation":2622},"/topics/devops/","devops",{"text":2715,"config":2716},"Version Control",{"href":2717,"dataGaName":2718,"dataGaLocation":2622},"/topics/version-control/","version control",{"text":2174,"config":2720},{"href":2721,"dataGaName":2158,"dataGaLocation":2622},"/topics/devsecops/",{"text":2723,"config":2724},"Cloud Native",{"href":2725,"dataGaName":2726,"dataGaLocation":2622},"/topics/cloud-native/","cloud native",{"text":2728,"config":2729},"AI for Coding",{"href":2730,"dataGaName":2731,"dataGaLocation":2622},"/topics/devops/ai-for-coding/","ai for coding",{"text":2733,"config":2734},"Agentic AI",{"href":2735,"dataGaName":2736,"dataGaLocation":2622},"/topics/agentic-ai/","agentic ai",{"title":2738,"links":2739},"Solutions",[2740,2742,2744,2749,2753,2756,2760,2763,2765,2768,2771,2776],{"text":2274,"config":2741},{"href":2269,"dataGaName":2274,"dataGaLocation":2622},{"text":2263,"config":2743},{"href":2246,"dataGaName":2247,"dataGaLocation":2622},{"text":2745,"config":2746},"Agile development",{"href":2747,"dataGaName":2748,"dataGaLocation":2622},"/solutions/agile-delivery/","agile delivery",{"text":2750,"config":2751},"SCM",{"href":2259,"dataGaName":2752,"dataGaLocation":2622},"source code management",{"text":2700,"config":2754},{"href":2252,"dataGaName":2755,"dataGaLocation":2622},"continuous integration & delivery",{"text":2757,"config":2758},"Value stream management",{"href":2302,"dataGaName":2759,"dataGaLocation":2622},"value stream management",{"text":2705,"config":2761},{"href":2762,"dataGaName":2708,"dataGaLocation":2622},"/solutions/gitops/",{"text":2312,"config":2764},{"href":2315,"dataGaName":2316,"dataGaLocation":2622},{"text":2766,"config":2767},"Small business",{"href":2321,"dataGaName":2322,"dataGaLocation":2622},{"text":2769,"config":2770},"Public sector",{"href":2326,"dataGaName":2327,"dataGaLocation":2622},{"text":2772,"config":2773},"Education",{"href":2774,"dataGaName":2775,"dataGaLocation":2622},"/solutions/education/","education",{"text":2777,"config":2778},"Financial services",{"href":2779,"dataGaName":2780,"dataGaLocation":2622},"/solutions/finance/","financial services",{"title":2334,"links":2782},[2783,2785,2787,2789,2792,2794,2797,2799,2801,2803,2805,2807,2809,2811],{"text":2347,"config":2784},{"href":2349,"dataGaName":2350,"dataGaLocation":2622},{"text":2352,"config":2786},{"href":2354,"dataGaName":2355,"dataGaLocation":2622},{"text":2357,"config":2788},{"href":2359,"dataGaName":2360,"dataGaLocation":2622},{"text":2362,"config":2790},{"href":2364,"dataGaName":2791,"dataGaLocation":2622},"docs",{"text":2385,"config":2793},{"href":2387,"dataGaName":2388,"dataGaLocation":2622},{"text":2795,"config":2796},"What's new",{"href":2445,"dataGaName":2446,"dataGaLocation":2622},{"text":2380,"config":2798},{"href":2382,"dataGaName":2383,"dataGaLocation":2622},{"text":2399,"config":2800},{"href":2401,"dataGaName":2402,"dataGaLocation":2622},{"text":2407,"config":2802},{"href":2409,"dataGaName":2410,"dataGaLocation":2622},{"text":2412,"config":2804},{"href":2414,"dataGaName":2415,"dataGaLocation":2622},{"text":2417,"config":2806},{"href":2419,"dataGaName":2420,"dataGaLocation":2622},{"text":2422,"config":2808},{"href":2424,"dataGaName":2425,"dataGaLocation":2622},{"text":2427,"config":2810},{"href":2429,"dataGaName":2430,"dataGaLocation":2622},{"text":2432,"config":2812},{"href":2434,"dataGaName":2435,"dataGaLocation":2622},{"title":2448,"links":2814},[2815,2817,2819,2821,2823,2825,2829,2834,2836,2838,2840],{"text":2456,"config":2816},{"href":2458,"dataGaName":2450,"dataGaLocation":2622},{"text":2461,"config":2818},{"href":2463,"dataGaName":2464,"dataGaLocation":2622},{"text":2469,"config":2820},{"href":2471,"dataGaName":2472,"dataGaLocation":2622},{"text":2474,"config":2822},{"href":2476,"dataGaName":2477,"dataGaLocation":2622},{"text":2479,"config":2824},{"href":2481,"dataGaName":2482,"dataGaLocation":2622},{"text":2826,"config":2827},"Sustainability",{"href":2828,"dataGaName":2826,"dataGaLocation":2622},"/sustainability/",{"text":2830,"config":2831},"Diversity, inclusion and belonging (DIB)",{"href":2832,"dataGaName":2833,"dataGaLocation":2622},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":2484,"config":2835},{"href":2486,"dataGaName":2487,"dataGaLocation":2622},{"text":2494,"config":2837},{"href":2496,"dataGaName":2497,"dataGaLocation":2622},{"text":2499,"config":2839},{"href":2501,"dataGaName":2502,"dataGaLocation":2622},{"text":2841,"config":2842},"Modern Slavery Transparency Statement",{"href":2843,"dataGaName":2844,"dataGaLocation":2622},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":2846},[2847,2850,2853],{"text":2848,"config":2849},"Terms",{"href":2674,"dataGaName":2675,"dataGaLocation":2622},{"text":2851,"config":2852},"Cookies",{"dataGaName":2684,"dataGaLocation":2622,"id":2685,"isOneTrustButton":427},{"text":2854,"config":2855},"Privacy",{"href":2679,"dataGaName":2680,"dataGaLocation":2622},[2857],{"id":2858,"title":7,"body":2162,"config":2859,"content":2861,"description":2162,"extension":2865,"meta":2866,"navigation":427,"path":2867,"seo":2868,"stem":2869,"__hash__":2870},"blogAuthors/en-us/blog/authors/abubakar-siddiq-ango.yml",{"template":2860},"BlogAuthor",{"name":7,"config":2862},{"headshot":2863,"ctfId":2864},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749660104/Blog/Author%20Headshots/abuango-headshot.jpg","abuango","yml",{},"/en-us/blog/authors/abubakar-siddiq-ango",{},"en-us/blog/authors/abubakar-siddiq-ango","u5Jv4JxCpfmcGQuXEU4Lr5xVBJP9LAB2NkXRMLeYwPE",[2872,2880,2888],{"title":2873,"description":2874,"heroImage":2875,"category":2158,"date":2876,"authors":2877,"slug":2879,"externalUrl":2162},"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",[2878],"Olivier Campeau","gitaly-on-kubernetes-generally-available",{"title":2881,"description":2882,"heroImage":2883,"category":2158,"date":2884,"authors":2885,"slug":2887,"externalUrl":2162},"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",[2886],"Rod Burns","teaching-software-development-the-easy-way-using-gitlab",{"title":2889,"description":2890,"heroImage":2891,"category":2158,"date":2892,"authors":2893,"slug":2895,"externalUrl":2162},"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",[2894],"Manav Khurana","ai-is-reshaping-devsecops-attend-gitlab-transcend-to-see-whats-next",{"promotions":2897},[2898,2912,2924,2936],{"id":2899,"categories":2900,"header":2902,"text":2903,"button":2904,"image":2909},"ai-modernization",[2901],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":2905,"config":2906},"Get your AI maturity score",{"href":2907,"dataGaName":2908,"dataGaLocation":2388},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":2910},{"src":2911},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":2913,"categories":2914,"header":2916,"text":2903,"button":2917,"image":2921},"devops-modernization",[2915,2158],"product","Are you just managing tools or shipping innovation?",{"text":2918,"config":2919},"Get your DevOps maturity score",{"href":2920,"dataGaName":2908,"dataGaLocation":2388},"/assessments/devops-modernization-assessment/",{"config":2922},{"src":2923},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":2925,"categories":2926,"header":2928,"text":2903,"button":2929,"image":2933},"security-modernization",[2927],"security","Are you trading speed for security?",{"text":2930,"config":2931},"Get your security maturity score",{"href":2932,"dataGaName":2908,"dataGaLocation":2388},"/assessments/security-modernization-assessment/",{"config":2934},{"src":2935},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":2937,"paths":2938,"header":2941,"text":2942,"button":2943,"image":2948},"github-azure-migration",[2939,2940],"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":2944,"config":2945},"See how GitLab compares to GitHub",{"href":2946,"dataGaName":2947,"dataGaLocation":2388},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":2949},{"src":2923},{"header":2951,"blurb":2952,"button":2953,"secondaryButton":2958},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":2954,"config":2955},"Get your free trial",{"href":2956,"dataGaName":2188,"dataGaLocation":2957},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":2660,"config":2959},{"href":2513,"dataGaName":2193,"dataGaLocation":2957},1786803773111]