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
When defining a private image to call during a custom pipeline, I am not able to parameterize the name parameter under image module.
We are allowed to parameterize the Username and Password fields but the not the Name field.
This would be helpful as I would only have to set the variable for the registry and tag inside my repository variables as opposed to the bitbucket-pipelines.yml file.
Deploy AKS Cluster:
- variables:
- name: environment
- step:
name: Deploying Azure Kubernetes Service Cluester
image:
#Must be updated using the latest Docker Image
name: private.registry/private.image:tag
username: $ACR_NAME
password: $ACR_PWD
script:
- ansible-playbook -vvv playbooks/authenticate_azure_setup.yml --extra-vars "env=$environment"
- ansible-playbook -vvv playbooks/resource_group_setup.yml --extra-vars "env=$environment"
- ansible-playbook -vvv playbooks/azure_aks_create.yaml --extra-vars "env=$environment"
This is a really important one for us too.
We've got ~12 repos, and having to go and change our custom image's version number for all will be horrible. We're currently using `latest`, but it's not a great solution.
Same problem here. At the very least need to provide the ability to customize tag using a variable.
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.