Skip to content

Commit fa05829

Browse files
Carlos Rodríguez HernándezBitnami Containers
andauthored
[bitnami/phpmyadmin] Detect non-standard images (#30963)
* [bitnami/phpmyadmin] Detect non-standard images Signed-off-by: Carlos Rodríguez Hernández <[email protected]> * Modify NOTES.txt Signed-off-by: Carlos Rodríguez Hernández <[email protected]> * Modify values Signed-off-by: Carlos Rodríguez Hernández <[email protected]> * Update CHANGELOG.md Signed-off-by: Bitnami Containers <[email protected]> * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <[email protected]> --------- Signed-off-by: Carlos Rodríguez Hernández <[email protected]> Signed-off-by: Bitnami Containers <[email protected]> Co-authored-by: Bitnami Containers <[email protected]>
1 parent cd40d8b commit fa05829

File tree

6 files changed

+25
-7
lines changed

6 files changed

+25
-7
lines changed

bitnami/phpmyadmin/CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# Changelog
22

3-
## 18.0.1 (2024-12-08)
3+
## 18.1.0 (2024-12-10)
44

5-
* [bitnami/phpmyadmin] Release 18.0.1 ([#30828](https://github.com/bitnami/charts/pull/30828))
5+
* [bitnami/phpmyadmin] Detect non-standard images ([#30963](https://github.com/bitnami/charts/pull/30963))
6+
7+
## <small>18.0.1 (2024-12-08)</small>
8+
9+
* [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)
10+
* [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)
11+
* [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)
12+
* [bitnami/phpmyadmin] Release 18.0.1 (#30828) ([d071989](https://github.com/bitnami/charts/commit/d071989c5ddebffdc20c17f58a45c29a8f1649c2)), closes [#30828](https://github.com/bitnami/charts/issues/30828)
613

714
## 18.0.0 (2024-11-12)
815

bitnami/phpmyadmin/Chart.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ dependencies:
44
version: 20.1.1
55
- name: common
66
repository: oci://registry-1.docker.io/bitnamicharts
7-
version: 2.27.2
8-
digest: sha256:90d0095f4cc0b0981ca3522bcd0ce27dcb23c07e8eb58de53d2f6e7f565f2c6f
9-
generated: "2024-12-08T10:03:49.607870177Z"
7+
version: 2.28.0
8+
digest: sha256:0408310bc47336c8392d692d7a434113b2c4c9805fec6b04fb3e22ce5d92ceb7
9+
generated: "2024-12-10T17:22:35.506795+01:00"

bitnami/phpmyadmin/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ maintainers:
3636
name: phpmyadmin
3737
sources:
3838
- https://github.com/bitnami/charts/tree/main/bitnami/phpmyadmin
39-
version: 18.0.1
39+
version: 18.1.0

bitnami/phpmyadmin/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ As an alternative, you can use of the preset configurations for pod affinity, po
187187
| `global.imageRegistry` | Global Docker image registry | `""` |
188188
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
189189
| `global.defaultStorageClass` | Global default StorageClass for Persistent Volume(s) | `""` |
190+
| `global.security.allowInsecureImages` | Allows skipping image verification | `false` |
190191
| `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` |
191192

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

424425
## Upgrading
425426

427+
### To 18.1.0
428+
429+
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).
430+
426431
### To 18.0.0
427432

428433
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):

bitnami/phpmyadmin/templates/NOTES.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,5 @@ $ helm upgrade {{ .Release.Name }} oci://registry-1.docker.io/bitnamicharts/phpm
6868
{{- end }}
6969
{{- include "common.errors.upgrade.passwords.empty" (dict "validationErrors" $passwordValidationErrors "context" $) -}}
7070
{{- include "common.warnings.resources" (dict "sections" (list "metrics" "") "context" $) }}
71-
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.metrics.image) "context" $) }}
71+
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.metrics.image) "context" $) }}
72+
{{- include "common.errors.insecureImages" (dict "images" (list .Values.image .Values.metrics.image) "context" $) }}

bitnami/phpmyadmin/values.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ global:
1818
##
1919
imagePullSecrets: []
2020
defaultStorageClass: ""
21+
## Security parameters
22+
##
23+
security:
24+
## @param global.security.allowInsecureImages Allows skipping image verification
25+
allowInsecureImages: false
2126
## Compatibility adaptations for Kubernetes platforms
2227
##
2328
compatibility:

0 commit comments

Comments
 (0)