galaxyproject / galaxy-helm

Minimal setup required to run Galaxy under Kubernetes
MIT License
41 stars 38 forks source link

Parameterize the image used for init containers. #500

Closed ksuderman closed 4 weeks ago

ksuderman commented 1 month ago

Most images used can be specified, and overridden, in the values.yaml file. Except the images used in the init containers in the jobs_init.yaml template.

This PR parameterizes those images (four in total) as well. The only issue to be settled is where in the values.yaml file these should be specified. For now I have added them under the jobs block:

#- Additional dynamic rules to map into the container.
jobs:
  init:
    #- The Docker image to use for the init containers
    image:
      repository: alpine
      tag: 3.16
      pullPolicy: IfNotPresent

Closes #499