diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 77b8c0f1..9e535c7d 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.3.2 +version: 0.3.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml index a0adb0b1..e9204484 100644 --- a/chart/templates/deployment.yaml +++ b/chart/templates/deployment.yaml @@ -48,7 +48,8 @@ spec: - --upstream=http://127.0.0.1:8080/ - --logtostderr=true - --v=0 - image: gcr.io/kubebuilder/kube-rbac-proxy:v0.13.1 + image: "{{ .Values.kube_rbac_proxy.image.repository }}:{{ .Values.kube_rbac_proxy.image.tag }}" + imagePullPolicy: {{ .Values.kube_rbac_proxy.image.pullPolicy }} name: kube-rbac-proxy ports: - containerPort: 8443 diff --git a/chart/values.yaml b/chart/values.yaml index 143505df..0aaa73f3 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -16,6 +16,13 @@ image: # Overrides the image tag whose default is the chart appVersion. tag: "" +kube_rbac_proxy: + image: + repository: gcr.io/kubebuilder/kube-rbac-proxy + pullPolicy: IfNotPresent + tag: "v0.13.1" + + imagePullSecrets: [] nameOverride: "" fullnameOverride: ""