Merge pull request #602 from nbjohnson/add-optional-keel-chart-containers
Add option for additional containers to be run with Helm chartpull/591/head
commit
421495f523
|
@ -1,7 +1,7 @@
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
name: keel
|
name: keel
|
||||||
description: Open source, tool for automating Kubernetes deployment updates. Keel is stateless, robust and lightweight.
|
description: Open source, tool for automating Kubernetes deployment updates. Keel is stateless, robust and lightweight.
|
||||||
version: 0.9.8
|
version: 0.9.9
|
||||||
# Note that we use appVersion to get images tag, so make sure this is correct.
|
# Note that we use appVersion to get images tag, so make sure this is correct.
|
||||||
appVersion: 0.16.1
|
appVersion: 0.16.1
|
||||||
keywords:
|
keywords:
|
||||||
|
|
|
@ -26,6 +26,9 @@ spec:
|
||||||
spec:
|
spec:
|
||||||
serviceAccountName: {{ template "serviceAccount.name" . }}
|
serviceAccountName: {{ template "serviceAccount.name" . }}
|
||||||
containers:
|
containers:
|
||||||
|
{{- if .Values.extraContainers }}
|
||||||
|
{{ toYaml .Values.extraContainers | indent 8 }}
|
||||||
|
{{- end }}
|
||||||
- name: keel
|
- name: keel
|
||||||
# Note that we use appVersion to get images tag.
|
# Note that we use appVersion to get images tag.
|
||||||
image: "{{ .Values.image.repository }}:{{ default .Chart.AppVersion .Values.image.tag }}"
|
image: "{{ .Values.image.repository }}:{{ default .Chart.AppVersion .Values.image.tag }}"
|
||||||
|
|
|
@ -15,6 +15,13 @@ insecureRegistry: false
|
||||||
polling:
|
polling:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
||||||
|
# Extra Containers to run alongside Keel
|
||||||
|
# extraContainers:
|
||||||
|
# - name: busybox
|
||||||
|
# image: busybox
|
||||||
|
# imagePullPolicy: IfNotPresent
|
||||||
|
# command: ['sh', '-c', 'echo Container 1 is Running ; sleep 3600']
|
||||||
|
|
||||||
# Helm provider support
|
# Helm provider support
|
||||||
helmProvider:
|
helmProvider:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
Loading…
Reference in New Issue