When using Bitbucket the deployment tab was working flawlessly. With GitLab the magic seems to be gone. Is there a way to configure environment names in GitLab to be properly mapped to Development/Staging/Prod in JIRA deployments?
You can specify the deployment tier for each environment in your .gitlab-ci.yml file to map it correctly in JIRA:
Deploy to SIT: stage: deploy environment: name: SIT deployment_tier: testing script: # Deploy Deploy to UAT: stage: deploy environment: name: UAT deployment_tier: staging script: # Deploy Deploy to PROD: stage: deploy environment: name: Production deployment_tier: production script: # Deploy
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.