mirror of
https://github.com/bitnami/charts.git
synced 2026-08-10 14:15:55 +08:00
[bitnami/appsmith] Detect non-standard images (#30863)
* [bitnami/appsmith] Detect non-standard images Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com> * Update values file and README Signed-off-by: Jota Martos <jotamartos@vmware.com> * Update CHANGELOG.md Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> * Update values.yaml 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 values.yaml Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com> --------- Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com> Signed-off-by: Jota Martos <jotamartos@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Co-authored-by: Jota Martos <jotamartos@vmware.com> Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
co-authored by
Jota Martos
Bitnami Containers
parent
0c989ce546
commit
3f553da2a6
@@ -1,8 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## 5.0.12 (2024-12-06)
|
||||
## 5.1.0 (2024-12-10)
|
||||
|
||||
* [bitnami/appsmith] Release 5.0.12 ([#30816](https://github.com/bitnami/charts/pull/30816))
|
||||
* [bitnami/appsmith] Detect non-standard images ([#30863](https://github.com/bitnami/charts/pull/30863))
|
||||
|
||||
## <small>5.0.12 (2024-12-06)</small>
|
||||
|
||||
* [bitnami/appsmith] Release 5.0.12 (#30816) ([e2cd722](https://github.com/bitnami/charts/commit/e2cd7226a84b5cb63b17d590e1000e36f2f893d4)), closes [#30816](https://github.com/bitnami/charts/issues/30816)
|
||||
|
||||
## <small>5.0.11 (2024-12-04)</small>
|
||||
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
dependencies:
|
||||
- name: redis
|
||||
repository: oci://registry-1.docker.io/bitnamicharts
|
||||
version: 20.4.0
|
||||
version: 20.4.1
|
||||
- name: mongodb
|
||||
repository: oci://registry-1.docker.io/bitnamicharts
|
||||
version: 16.3.2
|
||||
version: 16.3.3
|
||||
- name: common
|
||||
repository: oci://registry-1.docker.io/bitnamicharts
|
||||
version: 2.27.2
|
||||
digest: sha256:69f1a6b01f095ed3bf90fabee095d6dd25190ee34b1bb974eaf218ba8b48c4ce
|
||||
generated: "2024-12-06T12:11:49.04330408Z"
|
||||
version: 2.28.0
|
||||
digest: sha256:802071e6b343bd90bed32f07993b8cc1e3c5a6095b8059dbfff4980eca457cf8
|
||||
generated: "2024-12-10T16:48:23.348645+01:00"
|
||||
|
||||
@@ -39,4 +39,4 @@ maintainers:
|
||||
name: appsmith
|
||||
sources:
|
||||
- https://github.com/bitnami/charts/tree/main/bitnami/appsmith
|
||||
version: 5.0.12
|
||||
version: 5.1.0
|
||||
|
||||
@@ -220,12 +220,13 @@ The [Bitnami appsmith](https://github.com/bitnami/containers/tree/main/bitnami/a
|
||||
|
||||
### Global parameters
|
||||
|
||||
| Name | Description | Value |
|
||||
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ |
|
||||
| `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.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) | `auto` |
|
||||
| Name | Description | Value |
|
||||
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
|
||||
| `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.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) | `auto` |
|
||||
| `global.security.allowInsecureImages` | Allows skipping image verification | `false` |
|
||||
|
||||
### Common parameters
|
||||
|
||||
@@ -755,6 +756,10 @@ Find more information about how to deal with common errors related to Bitnami's
|
||||
|
||||
## Upgrading
|
||||
|
||||
### To 5.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 5.0.0
|
||||
|
||||
This major updates the MongoDB® subchart to its newest major, [16.0.0](https://github.com/bitnami/charts/tree/main/bitnami/mongodb#to-1600). To upgrade to MongoDB `8.0` from a `7.0` deployment, the `7.0` deployment must have `featureCompatibilityVersion` set to `7.0`. Please refer to the [official documentation](https://www.mongodb.com/docs/manual/release-notes/8.0/#upgrade-procedures).
|
||||
|
||||
@@ -81,4 +81,5 @@ To access your Appsmith site from outside the cluster follow the steps below:
|
||||
{{- include "common.warnings.rollingTag" .Values.image }}
|
||||
{{- include "common.warnings.rollingTag" .Values.volumePermissions.image }}
|
||||
{{- include "common.warnings.resources" (dict "sections" (list "backend" "client" "rts" "volumePermissions") "context" $) }}
|
||||
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.backend.redirectAmbassador.image .Values.volumePermissions.image) "context" $) }}
|
||||
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.backend.redirectAmbassador.image .Values.volumePermissions.image) "context" $) }}
|
||||
{{- include "common.errors.insecureImages" (dict "images" (list .Values.image .Values.backend.redirectAmbassador.image .Values.volumePermissions.image) "context" $) }}
|
||||
|
||||
@@ -19,6 +19,11 @@ global:
|
||||
##
|
||||
imagePullSecrets: []
|
||||
defaultStorageClass: ""
|
||||
## 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