[bitnami/oauth2-proxy] Global StorageClass as default value (#28073)

This commit is contained in:
Juan Ariza Toledano
2024-07-18 10:28:15 +02:00
committed by GitHub
parent 4ae4f9bf3c
commit 04ad6b8968
5 changed files with 33 additions and 26 deletions

View File

@@ -1,8 +1,12 @@
# Changelog # Changelog
## 5.3.8 (2024-07-04) ## 5.3.9 (2024-07-16)
* [bitnami/oauth2-proxy] Release 5.3.8 ([#27777](https://github.com/bitnami/charts/pull/27777)) * [bitnami/oauth2-proxy] Global StorageClass as default value ([#28073](https://github.com/bitnami/charts/pull/28073))
## <small>5.3.8 (2024-07-04)</small>
* [bitnami/oauth2-proxy] Release 5.3.8 (#27777) ([a10d8a5](https://github.com/bitnami/charts/commit/a10d8a558ba6ad53c1a3df426cd0a8d09989d23b)), closes [#27777](https://github.com/bitnami/charts/issues/27777)
## <small>5.3.7 (2024-07-03)</small> ## <small>5.3.7 (2024-07-03)</small>

View File

@@ -4,6 +4,6 @@ dependencies:
version: 19.6.1 version: 19.6.1
- name: common - name: common
repository: oci://registry-1.docker.io/bitnamicharts repository: oci://registry-1.docker.io/bitnamicharts
version: 2.20.3 version: 2.20.5
digest: sha256:171a846f5a888e654468a9082045d20814f5d39bd85b979a0416b32106901f67 digest: sha256:a61db46d03821e50e16eef82523b199019f3834b56ed66744b7148874a2e3d7b
generated: "2024-07-04T17:44:55.987639711Z" generated: "2024-07-16T12:15:11.232465+02:00"

View File

@@ -10,29 +10,29 @@ annotations:
apiVersion: v2 apiVersion: v2
appVersion: 7.6.0 appVersion: 7.6.0
dependencies: dependencies:
- condition: redis.enabled - condition: redis.enabled
name: redis name: redis
repository: oci://registry-1.docker.io/bitnamicharts repository: oci://registry-1.docker.io/bitnamicharts
version: 19.x.x version: 19.x.x
- name: common - name: common
repository: oci://registry-1.docker.io/bitnamicharts repository: oci://registry-1.docker.io/bitnamicharts
tags: tags:
- bitnami-common - bitnami-common
version: 2.x.x version: 2.x.x
description: A reverse proxy and static file server that provides authentication using Providers (Google, GitHub, and others) to validate accounts by email, domain or group. description: A reverse proxy and static file server that provides authentication using Providers (Google, GitHub, and others) to validate accounts by email, domain or group.
home: https://bitnami.com home: https://bitnami.com
icon: https://bitnami.com/assets/stacks/oauth2-proxy/img/oauth2-proxy-stack-220x234.png icon: https://bitnami.com/assets/stacks/oauth2-proxy/img/oauth2-proxy-stack-220x234.png
keywords: keywords:
- kubernetes - kubernetes
- oauth - oauth
- oauth2 - oauth2
- authentication - authentication
- google - google
- github - github
maintainers: maintainers:
- name: Broadcom, Inc. All Rights Reserved. - name: Broadcom, Inc. All Rights Reserved.
url: https://github.com/bitnami/charts url: https://github.com/bitnami/charts
name: oauth2-proxy name: oauth2-proxy
sources: sources:
- https://github.com/bitnami/charts/tree/main/bitnami/oauth2-proxy - https://github.com/bitnami/charts/tree/main/bitnami/oauth2-proxy
version: 5.3.8 version: 5.3.9

View File

@@ -139,7 +139,8 @@ The [Bitnami OAuth2 Proxy](https://github.com/bitnami/containers/tree/main/bitna
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ | | ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ |
| `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.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` | | `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

View File

@@ -9,7 +9,8 @@
## @param global.imageRegistry Global Docker image registry ## @param global.imageRegistry Global Docker image registry
## @param global.imagePullSecrets Global Docker registry secret names as an array ## @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: global:
imageRegistry: "" imageRegistry: ""
@@ -18,6 +19,7 @@ global:
## - myRegistryKeySecretName ## - myRegistryKeySecretName
## ##
imagePullSecrets: [] imagePullSecrets: []
defaultStorageClass: ""
storageClass: "" storageClass: ""
## Compatibility adaptations for Kubernetes platforms ## Compatibility adaptations for Kubernetes platforms
## ##