Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. change into the directory of the helm chart

  2. 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"
  3. 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.

  4. Make sure to change the registry back to your private registry before performing the deployment.

Push the images to your local registry

...