To keep my pipeline tasks DRY I want to reuse my deployment task. I now have something like:
- step:
<<: *DEPLOY_TEST
deployment: test
- step:
<<: *DEPLOY_STAGING
deployment: staging
trigger: manual
But the DEPLOY_STAGING and DEPLOY_TEST definitions only differ regarding the env on which to deploy. Can I add something like:
- step:
<<: *DEPLOY
deployment: test
environment:
HOST: test-host
To further reuse code and have just one DEPLOY definition?
Hi Rutger,
We recently released support for defining Deployment Variables. This will allow you to configure variables that will be injected into the relevant Deployment Step. Which seems to be what you need here.
You can configure them in the Repository Settings -> Pipelines -> Deployments.
Thanks,
Phil
Too bad we are only restricted to three hardcoded deployments though
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Liri Sokol, we've started work on adding support for flexible environment configurations (i.e. more than 3 environments, named whatever you want). You can follow its progress here: https://bitbucket.org/site/master/issues/15362/enhance-deployments-to-support-flexible
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also it's not just deployment where different environment vars may be needed; e.g. separate smoke test steps for an env that should be run after a deploy to that env
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This also doesn't work because you cannot have multiple steps that use deployment variables.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.