peertube: Allow extra pod spec values
This commit is contained in:
parent
87de280404
commit
5f87d7599e
2 changed files with 8 additions and 0 deletions
|
@ -37,6 +37,9 @@ spec:
|
|||
imagePullSecrets:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- with .Values.extraPodSpec }}
|
||||
{{- toYaml . | nindent 6 }}
|
||||
{{- end }}
|
||||
serviceAccountName: {{ include "peertube.serviceAccountName" . }}
|
||||
securityContext:
|
||||
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
||||
|
|
|
@ -97,6 +97,11 @@ extraEnv: []
|
|||
extraSecret: {}
|
||||
# PEERTUBE_INSTANCE_TERMS: "These are some very secret terms-of-service"
|
||||
|
||||
## Extra values to set on the pod spec.
|
||||
## Can be used for setting things like host aliases, overhead, custom schedulers, etc
|
||||
##
|
||||
extraPodSpec: {}
|
||||
|
||||
## Self-deployed PostgreSQL database
|
||||
## See: https://github.com/bitnami/charts/tree/master/bitnami/postgresql
|
||||
##
|
||||
|
|
Loading…
Reference in a new issue