diff --git a/helm/minio/templates/deployment.yaml b/helm/minio/templates/deployment.yaml index 323dd2a5e..bb7fd90ec 100644 --- a/helm/minio/templates/deployment.yaml +++ b/helm/minio/templates/deployment.yaml @@ -138,6 +138,8 @@ spec: value: {{ .Values.oidc.comment }} - name: MINIO_IDENTITY_OPENID_REDIRECT_URI value: {{ .Values.oidc.redirectUri }} + - name: MINIO_IDENTITY_OPENID_DISPLAY_NAME + value: {{ .Values.oidc.displayName }} {{- end }} {{- if .Values.etcd.endpoints }} - name: MINIO_ETCD_ENDPOINTS diff --git a/helm/minio/templates/statefulset.yaml b/helm/minio/templates/statefulset.yaml index c95cba226..d3853b240 100644 --- a/helm/minio/templates/statefulset.yaml +++ b/helm/minio/templates/statefulset.yaml @@ -174,6 +174,8 @@ spec: value: {{ .Values.oidc.scopes }} - name: MINIO_IDENTITY_OPENID_COMMENT value: {{ .Values.oidc.comment }} + - name: MINIO_IDENTITY_OPENID_DISPLAY_NAME + value: {{ .Values.oidc.displayName }} {{- end }} {{- range $key, $val := .Values.environment }} - name: {{ $key }} diff --git a/helm/minio/values.yaml b/helm/minio/values.yaml index 31bee3c46..d7e175852 100644 --- a/helm/minio/values.yaml +++ b/helm/minio/values.yaml @@ -495,6 +495,7 @@ oidc: # Can leave empty claimPrefix: "" comment: "" + displayName: "" networkPolicy: enabled: false