...
change into the directory of the helm chart
for this procedure, you need to temporarily change the registry in your customized values.yaml to the official MID registry:
Code Block global: registry: "repo.mid.de"
Run the following command:
Code Block helm template smartfacts mid-smartfacts/smartfacts -f values.yaml | grep "image:" | sed 's/^[[:space:]]*image:[[:space:]]*"\?\([^"]*[^[:space:]]\)"\?/\"\1/'
The output is a list of images with tags.
Make sure to change the registry back to your private registry before performing the deployment.
Push the images to your local registry
...