[bitnami/scylladb] Detect non-standard images (#30944)

* [bitnami/scylladb] Detect non-standard images

Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>

* Modify 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:
Carlos Rodríguez Hernández
2024-12-10 21:20:10 +01:00
committed by GitHub
parent b33a1a0007
commit 59e1fbe4b6
6 changed files with 29 additions and 14 deletions

View File

@@ -1,8 +1,12 @@
# Changelog # Changelog
## 3.0.1 (2024-11-14) ## 3.1.0 (2024-12-10)
* [bitnami/scylladb] Release 3.0.1 ([#30448](https://github.com/bitnami/charts/pull/30448)) * [bitnami/scylladb] Detect non-standard images ([#30944](https://github.com/bitnami/charts/pull/30944))
## <small>3.0.1 (2024-11-14)</small>
* [bitnami/scylladb] Release 3.0.1 (#30448) ([b27ef33](https://github.com/bitnami/charts/commit/b27ef3335324cf0d512aa97f45d4b469d814a45e)), closes [#30448](https://github.com/bitnami/charts/issues/30448)
## 3.0.0 (2024-10-29) ## 3.0.0 (2024-10-29)

View File

@@ -1,6 +1,6 @@
dependencies: dependencies:
- name: common - name: common
repository: oci://registry-1.docker.io/bitnamicharts repository: oci://registry-1.docker.io/bitnamicharts
version: 2.27.0 version: 2.28.0
digest: sha256:b711ab5874abf868a0c64353a790f17771758cee6f802acb9819be004c8460af digest: sha256:5b30f0fa07bb89b01c55fd6258c8ce22a611b13623d4ad83e8fdd1d4490adc74
generated: "2024-11-14T00:01:52.957287763Z" generated: "2024-12-10T17:27:32.634638+01:00"

View File

@@ -30,4 +30,4 @@ maintainers:
name: scylladb name: scylladb
sources: sources:
- https://github.com/bitnami/charts/tree/main/bitnami/scylladb - https://github.com/bitnami/charts/tree/main/bitnami/scylladb
version: 3.0.1 version: 3.1.0

View File

@@ -149,13 +149,14 @@ As the image run as non-root by default, it is necessary to adjust the ownership
### Global parameters ### Global parameters
| Name | Description | Value | | Name | Description | Value |
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ | | ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
| `global.imageRegistry` | Global Docker image registry | `""` | | `global.imageRegistry` | Global Docker image registry | `""` |
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` | | `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
| `global.defaultStorageClass` | Global default StorageClass for Persistent Volume(s) | `""` | | `global.defaultStorageClass` | Global default StorageClass for Persistent Volume(s) | `""` |
| `global.storageClass` | DEPRECATED: use global.defaultStorageClass instead | `""` | | `global.storageClass` | DEPRECATED: use global.defaultStorageClass instead | `""` |
| `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` |
| `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` |
### Common parameters ### Common parameters
@@ -514,6 +515,10 @@ Find more information about how to deal with common errors related to Bitnami's
## Upgrading ## Upgrading
### To 3.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).
It's necessary to set the `dbUser.password` parameter when upgrading for readiness/liveness probes to work properly. When you install this chart for the first time, some notes will be displayed providing the credentials you must use. Please note down the password and run the command below to upgrade your chart: It's necessary to set the `dbUser.password` parameter when upgrading for readiness/liveness probes to work properly. When you install this chart for the first time, some notes will be displayed providing the credentials you must use. Please note down the password and run the command below to upgrade your chart:
```console ```console

View File

@@ -93,4 +93,5 @@ To connect to your database from outside the cluster execute the following comma
{{- include "common.warnings.resources" (dict "sections" (list "metrics" "" "tls" "jmxProxy" "volumePermissions") "context" $) }} {{- include "common.warnings.resources" (dict "sections" (list "metrics" "" "tls" "jmxProxy" "volumePermissions") "context" $) }}
{{- include "scylladb.warnings.jvm" . }} {{- include "scylladb.warnings.jvm" . }}
{{- include "scylladb.warnings.jmx" . }} {{- include "scylladb.warnings.jmx" . }}
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.volumePermissions.image .Values.sysctl.image) "context" $) }} {{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.volumePermissions.image .Values.sysctl.image) "context" $) }}
{{- include "common.errors.insecureImages" (dict "images" (list .Values.image .Values.volumePermissions.image .Values.sysctl.image) "context" $) }}

View File

@@ -21,6 +21,11 @@ global:
imagePullSecrets: [] imagePullSecrets: []
defaultStorageClass: "" defaultStorageClass: ""
storageClass: "" storageClass: ""
## Security parameters
##
security:
## @param global.security.allowInsecureImages Allows skipping image verification
allowInsecureImages: false
## Compatibility adaptations for Kubernetes platforms ## Compatibility adaptations for Kubernetes platforms
## ##
compatibility: compatibility: