You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
So here is a doozy
The problem is if you are reusing steps vs YAML anchors (say s3 deploy pipe), how would you get the right AWS variable to be called in the reused pipes? Sample code below. So say I have different keys for Dev and UAT
definitions:
- step: &build-and-deploy
name: Build And Deploy
script:
- pipe: atlassian/aws-s3-deploy:0.2.4
variables:
AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY
pipelines:
branches:
dev:
- step: *build-and-deploy
uat:
- step: *build-and-deploy
@Ming Han Chung I have the same issue. I want to reuse codedeploy pipe and replace the value of DEPLOYMENT_GROUP.
master:
- step: *build
- step:
<<: *deploy
name: Deploy to Prod
deployment: production
trigger: manual
script:
variables:
DEPLOYMENT_GROUP: 'production-deployment-group'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There a possible hacky solution here: https://community.atlassian.com/t5/Bitbucket-questions/Bitbucket-Pipeline-Using-a-different-environmental-variable/qaq-p/1023246
Basically use a step that writes env vars to a file and pass that around...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We had a similar issue that we found a workaround for.
Consider the following step where we use the trigger-pipeline pipe, and want to specify later which pipeline to trigger:
- step: &run-deploy-pipeline
name: Run a deploy pipeline
trigger: manual
script:
- &deploy-script
pipe: atlassian/trigger-pipeline:5.0.0
variables: &deploy-variables
BITBUCKET_USERNAME: $BITBUCKET_USERNAME
BITBUCKET_APP_PASSWORD: $BITBUCKET_APP_PASSWORD
REPOSITORY: "repo-to-run-in"
REF_TYPE: "tag"
REF_NAME: $BITBUCKET_TAG
CUSTOM_PIPELINE_NAME: "pipeline-name" # This is the value we want to override
PIPELINE_VARIABLES: >
[{
"key": "APPLICATION_VERSION",
"value": "$BITBUCKET_TAG"
}]
WAIT: "true"
Here we needed to override/replace the CUSTOM_PIPELINE_NAME variable in this pipe. Note the various anchors we created, they're all necessary.
Using the step and performing the replacement looks like this:
- step:
<<: *run-deploy-pipeline
name: "Deploy to Some Env"
script:
- <<: *deploy-script
variables:
<<: *deploy-variables
CUSTOM_PIPELINE_NAME: "my-deploy-pipeline"
Feels very hacky, but does work. :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.