fixed image.tag in deployment.yaml; commented out keel config from chart
parent
290c8f03f1
commit
b6182f7f82
|
@ -28,7 +28,7 @@ spec:
|
||||||
containers:
|
containers:
|
||||||
- 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 }}:{{ .Chart.AppVersion | default .Values.image.tag }}"
|
image: "{{ .Values.image.repository }}:{{ default .Chart.AppVersion .Values.image.tag }}"
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
command: ["/bin/keel"]
|
command: ["/bin/keel"]
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
|
|
|
@ -128,17 +128,17 @@ secret:
|
||||||
# Keel self-update
|
# Keel self-update
|
||||||
# uncomment lines below if you want Keel to automaticly
|
# uncomment lines below if you want Keel to automaticly
|
||||||
# self-update to the latest release version
|
# self-update to the latest release version
|
||||||
keel:
|
# keel:
|
||||||
# keel policy (all/major/minor/patch/force)
|
# # keel policy (all/major/minor/patch/force)
|
||||||
policy: patch
|
# policy: patch
|
||||||
# trigger type, defaults to events such as pubsub, webhooks
|
# # trigger type, defaults to events such as pubsub, webhooks
|
||||||
trigger: poll
|
# trigger: poll
|
||||||
# polling schedule
|
# # polling schedule
|
||||||
pollSchedule: "@every 3m"
|
# pollSchedule: "@every 3m"
|
||||||
# images to track and update
|
# # images to track and update
|
||||||
images:
|
# images:
|
||||||
- repository: image.repository
|
# - repository: image.repository
|
||||||
tag: image.tag
|
# tag: image.tag
|
||||||
|
|
||||||
# RBAC manifests management
|
# RBAC manifests management
|
||||||
rbac:
|
rbac:
|
||||||
|
|
Loading…
Reference in New Issue