Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

[stable/kong] Add check for config changes #20051

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stable/kong/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ maintainers:
email: [email protected]
name: kong
sources:
version: 0.36.3
version: 0.36.4
appVersion: 1.4
9 changes: 9 additions & 0 deletions stable/kong/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,15 @@ value is your SMTP password.

## Changelog

### 0.36.4

> PR https://github.com/helm/charts/pull/20051

#### Fixed

- Issue: [`Ingress Controller errors when chart is redeployed with Admission
Webhook enabled`](https://github.com/helm/charts/issues/20050)

### 0.36.3

> PR https://github.com/helm/charts/pull/19992
Expand Down
3 changes: 3 additions & 0 deletions stable/kong/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ spec:
template:
metadata:
annotations:
{{- if .Values.ingressController.admissionWebhook.enabled }}
checksum/admission-webhook.yaml: {{ include (print $.Template.BasePath "/admission-webhook.yaml") . | sha256sum }}
{{- end }}
{{- if (and (not .Values.ingressController.enabled) (eq .Values.env.database "off" )) }}
{{- if .Values.dblessConfig.config }}
checksum/dbless.config: {{ toYaml .Values.dblessConfig.config | sha256sum }}
Expand Down