small authelia bugfix (+1 squashed commits)

Squashed commits:

[3134d5106] fix statefullset storage on TrueNAS and fix statefullset default for OpenLDAP
This commit is contained in:
kjeld Schouten-Lebbing
2021-08-31 20:49:20 +02:00
parent 95d59b42e1
commit e67bea1253
6 changed files with 7 additions and 6 deletions

View File

@@ -38,4 +38,4 @@ sources:
- https://github.com/authelia/chartrepo
- https://github.com/authelia/authelia
type: application
version: 1.6.2
version: 1.6.3

View File

@@ -154,7 +154,7 @@ redisProvider:
route_randomly: false
identity_providers:
oidc:
oidc:
## Enables this in the config map. Currently in beta stage.
## See https://www.authelia.com/docs/configuration/identity-providers/oidc.html#roadmap
enabled: false

View File

@@ -18,4 +18,4 @@ maintainers:
name: common
sources: null
type: library
version: 6.12.2
version: 6.12.3

View File

@@ -3,6 +3,7 @@ This template serves as the blueprint for the StatefulSet objects that are creat
within the common library.
*/}}
{{- define "common.statefulset" }}
{{- $releaseName := .Release.Name }}
---
apiVersion: apps/v1
kind: StatefulSet
@@ -62,7 +63,7 @@ spec:
requests:
storage: {{ required (printf "size is required for PVC %v" $vct.name) $vct.size | quote }}
{{- if $vct.storageClass }}
storageClassName: {{ if (eq "-" $vct.storageClass) }}""{{- else if (eq "SCALE-ZFS" $vct.storageClass ) }}{{ ( printf "%v-%v" "ix-storage-class" .Release.Name ) }}{{- else }}{{ $vct.storageClass | quote }}{{- end }}
storageClassName: {{ if (eq "-" $vct.storageClass) }}""{{- else if (eq "SCALE-ZFS" $vct.storageClass ) }}{{ ( printf "%v-%v" "ix-storage-class" $releaseName ) }}{{- else }}{{ $vct.storageClass | quote }}{{- end }}
{{- end }}
{{- end }}
{{- end }}

View File

@@ -26,4 +26,4 @@ sources:
- https://github.com/jp-gouin/helm-openldap
- https://github.com/osixia/docker-openldap
type: application
version: 1.7.8
version: 1.7.9

View File

@@ -46,7 +46,7 @@ questions:
label: "(Advanced) Controller Type"
schema:
type: string
default: "Statefulset"
default: "statefulset"
required: true
enum:
- value: "deployment"