Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bitnami/phpmyadmin] Detect non-standard images #30963

Merged
merged 5 commits into from
Dec 10, 2024
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
11 changes: 9 additions & 2 deletions bitnami/phpmyadmin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
# Changelog

## 18.0.1 (2024-12-08)
## 18.1.0 (2024-12-10)

* [bitnami/phpmyadmin] Release 18.0.1 ([#30828](https://github.com/bitnami/charts/pull/30828))
* [bitnami/phpmyadmin] Detect non-standard images ([#30963](https://github.com/bitnami/charts/pull/30963))

## <small>18.0.1 (2024-12-08)</small>

* [bitnami/*] docs: :memo: Add "Backup & Restore" section (#30711) ([35ab536](https://github.com/bitnami/charts/commit/35ab5363741e7548f4076f04da6e62d10153c60c)), closes [#30711](https://github.com/bitnami/charts/issues/30711)
* [bitnami/*] docs: :memo: Add "Prometheus metrics" (batch 5) (#30674) ([ed2a546](https://github.com/bitnami/charts/commit/ed2a54617faf763169e6b01a89100b9db32e1000)), closes [#30674](https://github.com/bitnami/charts/issues/30674)
* [bitnami/*] docs: :memo: Unify "Securing Traffic using TLS" section (#30707) ([b572333](https://github.com/bitnami/charts/commit/b57233336e4fe9af928ecb4f2a5f334011efb1bc)), closes [#30707](https://github.com/bitnami/charts/issues/30707)
* [bitnami/phpmyadmin] Release 18.0.1 (#30828) ([d071989](https://github.com/bitnami/charts/commit/d071989c5ddebffdc20c17f58a45c29a8f1649c2)), closes [#30828](https://github.com/bitnami/charts/issues/30828)

## 18.0.0 (2024-11-12)

Expand Down
6 changes: 3 additions & 3 deletions bitnami/phpmyadmin/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ dependencies:
version: 20.1.1
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.27.2
digest: sha256:90d0095f4cc0b0981ca3522bcd0ce27dcb23c07e8eb58de53d2f6e7f565f2c6f
generated: "2024-12-08T10:03:49.607870177Z"
version: 2.28.0
digest: sha256:0408310bc47336c8392d692d7a434113b2c4c9805fec6b04fb3e22ce5d92ceb7
generated: "2024-12-10T17:22:35.506795+01:00"
2 changes: 1 addition & 1 deletion bitnami/phpmyadmin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ maintainers:
name: phpmyadmin
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/phpmyadmin
version: 18.0.1
version: 18.1.0
5 changes: 5 additions & 0 deletions bitnami/phpmyadmin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ As an alternative, you can use of the preset configurations for pod affinity, po
| `global.imageRegistry` | Global Docker image registry | `""` |
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
| `global.defaultStorageClass` | Global default StorageClass for Persistent Volume(s) | `""` |
| `global.security.allowInsecureImages` | Allows skipping image verification | `false` |
| `global.compatibility.openshift.adaptSecurityContext` | Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) | `disabled` |

### Common parameters
Expand Down Expand Up @@ -423,6 +424,10 @@ Find more information about how to deal with common errors related to Bitnami's

## Upgrading

### To 18.1.0

This version introduces image verification for security purposes. To disable it, set `global.security.allowInsecureImages` to `true`. More details at [GitHub issue](https://github.com/bitnami/charts/issues/30850).

### To 18.0.0

This major bump updates the MariaDB subchart to version 20.0.0. This subchart updates the StatefulSet objects `serviceName` to use a headless service, as the current non-headless service attached to it was not providing DNS entries. This will cause an upgrade issue because it changes "immutable fields". To workaround it, delete the StatefulSet objects as follows (replace the RELEASE_NAME placeholder):
Expand Down
3 changes: 2 additions & 1 deletion bitnami/phpmyadmin/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,5 @@ $ helm upgrade {{ .Release.Name }} oci://registry-1.docker.io/bitnamicharts/phpm
{{- end }}
{{- include "common.errors.upgrade.passwords.empty" (dict "validationErrors" $passwordValidationErrors "context" $) -}}
{{- include "common.warnings.resources" (dict "sections" (list "metrics" "") "context" $) }}
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.metrics.image) "context" $) }}
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.metrics.image) "context" $) }}
{{- include "common.errors.insecureImages" (dict "images" (list .Values.image .Values.metrics.image) "context" $) }}
5 changes: 5 additions & 0 deletions bitnami/phpmyadmin/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ global:
##
imagePullSecrets: []
defaultStorageClass: ""
## Security parameters
##
security:
## @param global.security.allowInsecureImages Allows skipping image verification
allowInsecureImages: false
## Compatibility adaptations for Kubernetes platforms
##
compatibility:
Expand Down
Loading