diff --git a/.circleci/config.yml b/.circleci/config.yml index 462fa11a..1fc45032 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,7 +34,7 @@ jobs: shellcheck -x .test/e2e-kind.sh lint-charts: docker: - - image: quay.io/helmpack/chart-testing:v2.0.1 + - image: quay.io/helmpack/chart-testing:v3.3.1 steps: - checkout - run: @@ -47,7 +47,7 @@ jobs: machine: true environment: CHART_TESTING_IMAGE: quay.io/helmpack/chart-testing - CHART_TESTING_TAG: v2.0.1 + CHART_TESTING_TAG: v3.3.1 CHARTS_REPO: https://github.com/keel-hq/keel K8S_VERSION: v1.11.3 steps: diff --git a/chart/keel/Chart.yaml b/chart/keel/Chart.yaml index 48c90ba5..164381e2 100644 --- a/chart/keel/Chart.yaml +++ b/chart/keel/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: keel description: Open source, tool for automating Kubernetes deployment updates. Keel is stateless, robust and lightweight. -version: 0.9.5 +version: 0.9.6 # Note that we use appVersion to get images tag, so make sure this is correct. appVersion: 0.16.1 keywords: diff --git a/chart/keel/templates/clusterrolebinding.yaml b/chart/keel/templates/clusterrolebinding.yaml index 91fe9b51..54e1a849 100644 --- a/chart/keel/templates/clusterrolebinding.yaml +++ b/chart/keel/templates/clusterrolebinding.yaml @@ -1,14 +1,12 @@ {{- if .Values.rbac.enabled }} apiVersion: rbac.authorization.k8s.io/v1 -# apiVersion: rbac.authorization.k8s.io/v1beta1 kind: ClusterRoleBinding metadata: name: {{ template "keel.name" . }} roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole - # name: {{ template "keel.name" . }} - name: cluster-admin + name: {{ template "keel.name" . }} subjects: - kind: ServiceAccount name: {{ template "serviceAccount.name" . }}