From b6182f7f826032fc6053000809c6f5beac6e181f Mon Sep 17 00:00:00 2001 From: Neil Toledo Date: Tue, 9 Jun 2020 13:11:57 -0700 Subject: [PATCH] fixed image.tag in deployment.yaml; commented out keel config from chart --- chart/keel/templates/deployment.yaml | 2 +- chart/keel/values.yaml | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/chart/keel/templates/deployment.yaml b/chart/keel/templates/deployment.yaml index 94524e1e..51b94c3f 100644 --- a/chart/keel/templates/deployment.yaml +++ b/chart/keel/templates/deployment.yaml @@ -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: diff --git a/chart/keel/values.yaml b/chart/keel/values.yaml index 78d397ce..120826f2 100644 --- a/chart/keel/values.yaml +++ b/chart/keel/values.yaml @@ -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: