* Add default Radicale config file
* Add Chart.yaml
* Add initial {questions,values}.yaml
* Fix config persistence
* Add Linux capabilities and set PUID
* Add server and encoding config
* Add storage, web, and logging config
* Add rights config
* Add auth settings
* Change mask_passwords to bool
* Add authentication
* Fix questions
17 lines
329 B
Smarty
17 lines
329 B
Smarty
{{/* Radicale htpasswd file */}}
|
|
{{- define "radicale.secret" -}}
|
|
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: radicale-secret
|
|
labels:
|
|
{{- include "tc.common.labels" . | nindent 4 }}
|
|
stringData:
|
|
users: |-
|
|
{{- range .Values.radicale.auth.users }}
|
|
{{ htpasswd .username .password }}
|
|
{{- end }}
|
|
|
|
{{- end }}
|