[bitnami/kuberay] Global StorageClass as default value (#28046)

This commit is contained in:
Juan Ariza Toledano
2024-07-16 15:17:55 +02:00
committed by GitHub
parent 6c1f29e17b
commit ce63e897be
5 changed files with 26 additions and 19 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 1.2.7 (2024-07-04)
## 1.2.8 (2024-07-16)
* [bitnami/kuberay] Release 1.2.7 ([#27798](https://github.com/bitnami/charts/pull/27798))
* [bitnami/kuberay] Global StorageClass as default value ([#28046](https://github.com/bitnami/charts/pull/28046))
## <small>1.2.7 (2024-07-04)</small>
* [bitnami/kuberay] Release 1.2.7 (#27798) ([5619a25](https://github.com/bitnami/charts/commit/5619a25ba4aa1ee7d62cbcc66044be7fb95db6e3)), closes [#27798](https://github.com/bitnami/charts/issues/27798)
## <small>1.2.6 (2024-07-03)</small>

View File

@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.20.3
digest: sha256:569e1c9d81abdcad3891e065c0f23c83786527d2043f2bc68193c43d18886c19
generated: "2024-06-18T11:46:20.456794795Z"
version: 2.20.5
digest: sha256:5b98791747a148b9d4956b81bb8635f49a0ae831869d700d52e514b8fd1a2445
generated: "2024-07-16T12:10:51.323041+02:00"

View File

@@ -14,22 +14,22 @@ annotations:
apiVersion: v2
appVersion: 1.1.1
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
tags:
- bitnami-common
version: 2.x.x
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
tags:
- bitnami-common
version: 2.x.x
description: KubeRay is a Kubernetes operator for deploying and management of Ray applications on Kubernetes using CustomResourceDefinitions.
home: https://bitnami.com
icon: https://bitnami.com/assets/stacks/kuberay/img/kuberay-stack-220x234.png
keywords:
- ray
- machine-learning
- kuberay
- ray
- machine-learning
- kuberay
maintainers:
- name: Broadcom, Inc. All Rights Reserved.
url: https://github.com/bitnami/charts
- name: Broadcom, Inc. All Rights Reserved.
url: https://github.com/bitnami/charts
name: kuberay
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/kuberay
version: 1.2.7
- https://github.com/bitnami/charts/tree/main/bitnami/kuberay
version: 1.2.8

View File

@@ -126,7 +126,8 @@ As an alternative, use one of the preset configurations for pod affinity, pod an
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ |
| `global.imageRegistry` | Global Docker image registry | `""` |
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
| `global.storageClass` | Global StorageClass for Persistent Volume(s) | `""` |
| `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` |
### Common parameters

View File

@@ -9,7 +9,8 @@
## @param global.imageRegistry Global Docker image registry
## @param global.imagePullSecrets Global Docker registry secret names as an array
## @param global.storageClass Global StorageClass for Persistent Volume(s)
## @param global.defaultStorageClass Global default StorageClass for Persistent Volume(s)
## @param global.storageClass DEPRECATED: use global.defaultStorageClass instead
##
global:
imageRegistry: ""
@@ -18,6 +19,7 @@ global:
## - myRegistryKeySecretName
##
imagePullSecrets: []
defaultStorageClass: ""
storageClass: ""
## Compatibility adaptations for Kubernetes platforms
##