mirror of
https://github.com/bitnami/charts.git
synced 2026-08-10 14:15:55 +08:00
[bitnami/odoo] Detect non-standard images (#30910)
* [bitnami/odoo] Detect non-standard images Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com> * Update NOTES.txt Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com> * Update CHANGELOG.md Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> --------- Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
co-authored by
Bitnami Containers
parent
b7e317558b
commit
56d9ae2dc9
@@ -1,8 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## 28.0.3 (2024-12-05)
|
||||
## 28.1.0 (2024-12-10)
|
||||
|
||||
* [bitnami/odoo] Release 28.0.3 ([#30806](https://github.com/bitnami/charts/pull/30806))
|
||||
* [bitnami/odoo] Detect non-standard images ([#30910](https://github.com/bitnami/charts/pull/30910))
|
||||
|
||||
## <small>28.0.3 (2024-12-06)</small>
|
||||
|
||||
* [bitnami/odoo] Release 28.0.3 (#30806) ([82182ac](https://github.com/bitnami/charts/commit/82182ac46fe08461ee98a7415ef12419363afbc4)), closes [#30806](https://github.com/bitnami/charts/issues/30806)
|
||||
|
||||
## <small>28.0.2 (2024-12-04)</small>
|
||||
|
||||
|
||||
@@ -4,6 +4,6 @@ dependencies:
|
||||
version: 16.2.5
|
||||
- name: common
|
||||
repository: oci://registry-1.docker.io/bitnamicharts
|
||||
version: 2.27.2
|
||||
digest: sha256:827eacdba5429c70ceb607851e848c3b458c21a776b303360d4995088362dfa8
|
||||
generated: "2024-12-04T18:05:40.730749174Z"
|
||||
version: 2.28.0
|
||||
digest: sha256:9c2ce8b298e807bc8141682773027cc3b0c62feec6933d315f9f181a4dabe862
|
||||
generated: "2024-12-10T17:21:17.011511+01:00"
|
||||
|
||||
@@ -34,4 +34,4 @@ maintainers:
|
||||
name: odoo
|
||||
sources:
|
||||
- https://github.com/bitnami/charts/tree/main/bitnami/odoo
|
||||
version: 28.0.3
|
||||
version: 28.1.0
|
||||
|
||||
@@ -131,6 +131,7 @@ See the [Parameters](#parameters) section to configure the PVC or to disable per
|
||||
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
|
||||
| `global.defaultStorageClass` | Global default StorageClass for Persistent Volume(s) | `""` |
|
||||
| `global.storageClass` | DEPRECATED: use global.defaultStorageClass instead | `""` |
|
||||
| `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
|
||||
@@ -389,6 +390,10 @@ Find more information about how to deal with common errors related to Bitnami's
|
||||
|
||||
## Upgrading
|
||||
|
||||
### To 28.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 27.0.0
|
||||
|
||||
This major updates the PostgreSQL subchart to its newest major, 16.0.0, which uses PostgreSQL 17.x. Follow the [official instructions](https://www.postgresql.org/docs/17/upgrading.html) to upgrade to 17.x.
|
||||
|
||||
@@ -52,4 +52,5 @@ Did you know there are enterprise versions of the Bitnami catalog? For enhanced
|
||||
|
||||
{{- include "common.warnings.rollingTag" .Values.image }}
|
||||
{{- include "common.warnings.resources" (dict "sections" (list "" "volumePermissions") "context" $) }}
|
||||
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image) "context" $) }}
|
||||
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image) "context" $) }}
|
||||
{{- include "common.errors.insecureImages" (dict "images" (list .Values.image) "context" $) }}
|
||||
|
||||
@@ -21,6 +21,11 @@ global:
|
||||
imagePullSecrets: []
|
||||
defaultStorageClass: ""
|
||||
storageClass: ""
|
||||
## Security parameters
|
||||
##
|
||||
security:
|
||||
## @param global.security.allowInsecureImages Allows skipping image verification
|
||||
allowInsecureImages: false
|
||||
## Compatibility adaptations for Kubernetes platforms
|
||||
##
|
||||
compatibility:
|
||||
|
||||
Reference in New Issue
Block a user