Skip to content

Add initContainers

Victor Sollerhed requested to merge MPV/auto-deploy-app:init-containers into master

Could we please add initContainers?

Inspired by how helm/stable/nginx-ingress does it:

Usage example:

$ echo "extraInitContainers:\n- name: init\n image: busyb ox" | helm template -f - . | grep initContainers -C3


          timeoutSeconds: 3
        resources:
            requests: null
      initContainers:
        - image: busybox
          name: init
---

Merge request reports