diff --git a/charts/ghost/Chart.yaml b/charts/ghost/Chart.yaml index e9ca6f519c594224b2dedce83b07dbc245f8c3ce..d695c904ba86d19187c54b1105835d7754a97aa5 100644 --- a/charts/ghost/Chart.yaml +++ b/charts/ghost/Chart.yaml @@ -7,7 +7,7 @@ type: application maintainers: - name: groundhog2k -version: "0.83.0" +version: "0.83.1" appVersion: "5.40.1" diff --git a/charts/ghost/README.md b/charts/ghost/README.md index bd10353d95d6a1a997a4b96c2383556c1db1aebf..dbd65375a5ca13cc38c11d5b0cf8aa19af7ef103 100644 --- a/charts/ghost/README.md +++ b/charts/ghost/README.md @@ -1,6 +1,6 @@ # Ghost -   +   ## Changelog diff --git a/charts/ghost/RELEASENOTES.md b/charts/ghost/RELEASENOTES.md index 72d606bef8454a93ee4b464fa04fd0c8fe3a4c99..8cf7f386b4554ff1861b0e146bbf61aa4cf57e6b 100644 --- a/charts/ghost/RELEASENOTES.md +++ b/charts/ghost/RELEASENOTES.md @@ -109,4 +109,5 @@ | 0.81.0 | 5.38.0 | Upgraded to Ghost 5.38.0 | | 0.82.0 | 5.39.0 | Upgraded to Ghost 5.39.0 | | 0.83.0 | 5.40.1 | Upgraded to Ghost 5.40.1 | +| 0.83.1 | 5.40.1 | Fixed health probe warnings | | | | | diff --git a/charts/ghost/templates/deployment.yaml b/charts/ghost/templates/deployment.yaml index cee04e3b46d51b66c2ab6fa1339d7397b1328edc..706fd7b51825cb2187bd86e5f530753da3b8232c 100644 --- a/charts/ghost/templates/deployment.yaml +++ b/charts/ghost/templates/deployment.yaml @@ -96,6 +96,10 @@ spec: httpHeaders: - name: Host value: localhost:2368 + {{- if hasPrefix "https" (default "" .Values.settings.url) }} + - name: x-forwarded-proto + value: https + {{- end }} {{- with .Values.startupProbe }} initialDelaySeconds: {{ .initialDelaySeconds }} timeoutSeconds: {{ .timeoutSeconds }} @@ -117,6 +121,10 @@ spec: httpHeaders: - name: Host value: localhost:2368 + {{- if hasPrefix "https" (default "" .Values.settings.url) }} + - name: x-forwarded-proto + value: https + {{- end }} {{- with .Values.livenessProbe }} initialDelaySeconds: {{ .initialDelaySeconds }} timeoutSeconds: {{ .timeoutSeconds }} @@ -138,6 +146,10 @@ spec: httpHeaders: - name: Host value: localhost:2368 + {{- if hasPrefix "https" (default "" .Values.settings.url) }} + - name: x-forwarded-proto + value: https + {{- end }} {{- with .Values.readinessProbe }} initialDelaySeconds: {{ .initialDelaySeconds }} timeoutSeconds: {{ .timeoutSeconds }} diff --git a/charts/wordpress/Chart.yaml b/charts/wordpress/Chart.yaml index 632af7b3943af276e8003a5a44490d4c49724a0f..f20333272e191d63c017e7175c61a6307d2eba20 100644 --- a/charts/wordpress/Chart.yaml +++ b/charts/wordpress/Chart.yaml @@ -8,7 +8,7 @@ maintainers: type: application # This is the chart version. -version: "0.7.5" +version: "0.7.6" # This is the version number of the application being deployed. appVersion: "6.1.1-apache" diff --git a/charts/wordpress/README.md b/charts/wordpress/README.md index f6653bf0d85dd7b7103c2ec47ac5d8e0907b34f7..c093a5786ca487fe5d11ca9dcde12303632a3e5d 100644 --- a/charts/wordpress/README.md +++ b/charts/wordpress/README.md @@ -1,6 +1,6 @@ # Wordpress -   +   ## Changelog diff --git a/charts/wordpress/RELEASENOTES.md b/charts/wordpress/RELEASENOTES.md index fa0a599eb57ffc721911817994b0f54e632ce85a..5ca34c32a65cd150fd1c66636a9705e2117717ae 100644 --- a/charts/wordpress/RELEASENOTES.md +++ b/charts/wordpress/RELEASENOTES.md @@ -23,4 +23,5 @@ | 0.7.3 | 6.1.1-apache | Fixed values documentation - thx @generalovmaksim | | 0.7.4 | 6.1.1-apache | Updated version detection for pod disruption budget | | 0.7.5 | 6.1.1-apache | Updated chart dependencies (mariadb 0.2.25) | +| 0.7.6 | 6.1.1-apache | Fixed health probe warnings | | | | | diff --git a/charts/wordpress/templates/deployment.yaml b/charts/wordpress/templates/deployment.yaml index 8f2a1b7694852b65b54d7f6ac123f09f37ae091d..b53714e22205444687ad7dccfd0939a5706cc3c4 100644 --- a/charts/wordpress/templates/deployment.yaml +++ b/charts/wordpress/templates/deployment.yaml @@ -73,6 +73,8 @@ spec: httpHeaders: - name: Host value: localhost:{{ .Values.containerPort }} + - name: x-forwarded-proto + value: https {{- with .Values.startupProbe }} initialDelaySeconds: {{ .initialDelaySeconds }} timeoutSeconds: {{ .timeoutSeconds }} @@ -94,6 +96,8 @@ spec: httpHeaders: - name: Host value: localhost:{{ .Values.containerPort }} + - name: x-forwarded-proto + value: https {{- with .Values.livenessProbe }} initialDelaySeconds: {{ .initialDelaySeconds }} timeoutSeconds: {{ .timeoutSeconds }} @@ -115,6 +119,8 @@ spec: httpHeaders: - name: Host value: localhost:{{ .Values.containerPort }} + - name: x-forwarded-proto + value: https {{- with .Values.readinessProbe }} initialDelaySeconds: {{ .initialDelaySeconds }} timeoutSeconds: {{ .timeoutSeconds }}