diff --git a/bitnami/appsmith/CHANGELOG.md b/bitnami/appsmith/CHANGELOG.md index a93749ec652406..ceb333b2aee0e6 100644 --- a/bitnami/appsmith/CHANGELOG.md +++ b/bitnami/appsmith/CHANGELOG.md @@ -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)) + +## 5.0.12 (2024-12-06) + +* [bitnami/appsmith] Release 5.0.12 (#30816) ([e2cd722](https://github.com/bitnami/charts/commit/e2cd7226a84b5cb63b17d590e1000e36f2f893d4)), closes [#30816](https://github.com/bitnami/charts/issues/30816) ## 5.0.11 (2024-12-04) diff --git a/bitnami/appsmith/Chart.lock b/bitnami/appsmith/Chart.lock index 57f2948afc6ece..dce8c726562701 100644 --- a/bitnami/appsmith/Chart.lock +++ b/bitnami/appsmith/Chart.lock @@ -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" diff --git a/bitnami/appsmith/Chart.yaml b/bitnami/appsmith/Chart.yaml index e0f1e979a6689c..da81d87d92a269 100644 --- a/bitnami/appsmith/Chart.yaml +++ b/bitnami/appsmith/Chart.yaml @@ -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 diff --git a/bitnami/appsmith/README.md b/bitnami/appsmith/README.md index 48dc3e12018c2e..16e3f4968126f1 100644 --- a/bitnami/appsmith/README.md +++ b/bitnami/appsmith/README.md @@ -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). diff --git a/bitnami/appsmith/templates/NOTES.txt b/bitnami/appsmith/templates/NOTES.txt index 5b472433e3c55f..4887a99c6e468e 100644 --- a/bitnami/appsmith/templates/NOTES.txt +++ b/bitnami/appsmith/templates/NOTES.txt @@ -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" $) }} \ No newline at end of file +{{- 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" $) }} diff --git a/bitnami/appsmith/values.yaml b/bitnami/appsmith/values.yaml index d4146e436c966e..7d5112a8362132 100644 --- a/bitnami/appsmith/values.yaml +++ b/bitnami/appsmith/values.yaml @@ -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: