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