[bitnami/janusgraph] Detect non-standard images (#30906)

* [bitnami/janusgraph] Detect non-standard images

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 19:09:01 +01:00
committed by GitHub
parent e47bbb4f1f
commit d4d178aaad
6 changed files with 30 additions and 14 deletions

View File

@@ -1,8 +1,13 @@
# Changelog
## 1.0.1 (2024-11-29)
## 1.1.0 (2024-12-10)
* [bitnami/janusgraph] chore: :bulb: :memo: :rotating_light: Rename prometheus "@section" to avoid linter problems ([#30684](https://github.com/bitnami/charts/pull/30684))
* [bitnami/janusgraph] Detect non-standard images ([#30906](https://github.com/bitnami/charts/pull/30906))
## <small>1.0.1 (2024-11-29)</small>
* [bitnami/*] docs: :memo: Add "Prometheus metrics" (batch 3) (#30666) ([82fc7e2](https://github.com/bitnami/charts/commit/82fc7e2fc12e2648ed22069942203c02bf5d4cc6)), closes [#30666](https://github.com/bitnami/charts/issues/30666)
* [bitnami/janusgraph] chore: :bulb: :memo: :rotating_light: Rename prometheus "@section" to avoid lin ([5afb864](https://github.com/bitnami/charts/commit/5afb864a77fdf1069d28bd498e52e36b45c17e1b)), closes [#30684](https://github.com/bitnami/charts/issues/30684)
## 1.0.0 (2024-11-22)

View File

@@ -1,9 +1,9 @@
dependencies:
- name: cassandra
repository: oci://registry-1.docker.io/bitnamicharts
version: 12.0.4
version: 12.0.5
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.27.0
digest: sha256:f646c7b85d3f8f29e75415d1125f81ff6f0fb275ed4c58dfdfacd4c1a0f04e6d
generated: "2024-11-08T17:22:43.070873421Z"
version: 2.28.0
digest: sha256:6b15efd3e07b9ed1caa697ca38c8921d6e3eccc663e36a395e6d4edf4ee9c371
generated: "2024-12-10T17:05:06.293747+01:00"

View File

@@ -38,4 +38,4 @@ sources:
- https://github.com/bitnami/charts/tree/main/bitnami/janusgraph
- https://github.com/bitnami/containers/tree/main/bitnami/janusgraph
- https://github.com/janusgraph/janusgraph
version: 1.0.1
version: 1.1.0

View File

@@ -168,13 +168,14 @@ As an alternative, use one of the preset configurations for pod affinity, pod an
### 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.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` |
| 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.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) | `auto` |
### Common parameters
@@ -461,6 +462,10 @@ Find more information about how to deal with common errors related to Bitnami's
## Upgrading
### To 1.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 1.0.0
This major updates the Cassandra version from 4.1.x to 5.0.x. Instead of overwritting it in this chart values, it will automatically use the version defined in the cassandra subchart.

View File

@@ -70,3 +70,4 @@ To access Janusgraph from outside the cluster follow the steps below:
{{- include "common.warnings.rollingTag" .Values.image }}
{{- include "janusgraph.validateValues" . }}
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.metrics.image .Values.volumePermissions.image) "context" $) }}
{{- include "common.errors.insecureImages" (dict "images" (list .Values.image .Values.metrics.image .Values.volumePermissions.image) "context" $) }}

View File

@@ -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: