fix secret templating
This commit is contained in:
@@ -15,7 +15,7 @@ type: application
|
|||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
# to the chart and its templates, including the app version.
|
# to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
version: 0.3.3
|
version: 0.3.4
|
||||||
|
|
||||||
# This is the version number of the application being deployed.
|
# This is the version number of the application being deployed.
|
||||||
# renovate:image=ghcr.io/mattlqx/docker-pixelfed
|
# renovate:image=ghcr.io/mattlqx/docker-pixelfed
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# pixelfed
|
# pixelfed
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
A Helm chart for deploying Pixelfed on Kubernetes
|
A Helm chart for deploying Pixelfed on Kubernetes
|
||||||
|
|
||||||
@@ -192,4 +192,4 @@ A Helm chart for deploying Pixelfed on Kubernetes
|
|||||||
| volumes | list | `[]` | Additional volumes on the output Deployment definition. |
|
| volumes | list | `[]` | Additional volumes on the output Deployment definition. |
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
Autogenerated from chart metadata using [helm-docs v1.11.0](https://github.com/norwoodj/helm-docs/releases/v1.11.0)
|
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)
|
||||||
|
|||||||
@@ -5,9 +5,9 @@ kind: Secret
|
|||||||
metadata:
|
metadata:
|
||||||
name: pixelfed-database
|
name: pixelfed-database
|
||||||
data:
|
data:
|
||||||
host: {{ .Values.externalDatabase.host }}
|
host: {{ .Values.externalDatabase.host | b64enc }}
|
||||||
port: {{ .Values.externalDatabase.port }}
|
port: {{ .Values.externalDatabase.port | quote | b64enc }}
|
||||||
database: {{ .Values.externalDatabase.database }}
|
database: {{ .Values.externalDatabase.database | b64enc }}
|
||||||
username: {{ .Values.externalDatabase.username }}
|
username: {{ .Values.externalDatabase.username | b64enc }}
|
||||||
password: {{ .Values.externalDatabase.password }}
|
password: {{ .Values.externalDatabase.password | b64enc }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|||||||
@@ -5,12 +5,12 @@ kind: Secret
|
|||||||
metadata:
|
metadata:
|
||||||
name: pixelfed-mail
|
name: pixelfed-mail
|
||||||
data:
|
data:
|
||||||
host: {{ .Values.pixelfed.mail.host }}
|
host: {{ .Values.pixelfed.mail.host | b64enc }}
|
||||||
port: {{ .Values.pixelfed.mail.port }}
|
port: {{ .Values.pixelfed.mail.port | quote | b64enc}}
|
||||||
{{- if .Values.pixelfed.mail.username }}
|
{{- if .Values.pixelfed.mail.username }}
|
||||||
username: {{ .Values.pixelfed.mail.username }}
|
username: {{ .Values.pixelfed.mail.username | b64enc }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.pixelfed.mail.password }}
|
{{- if .Values.pixelfed.mail.password }}
|
||||||
password: {{ .Values.pixelfed.mail.password }}
|
password: {{ .Values.pixelfed.mail.password | b64enc }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ kind: Secret
|
|||||||
metadata:
|
metadata:
|
||||||
name: pixelfed-valkey
|
name: pixelfed-valkey
|
||||||
data:
|
data:
|
||||||
host: {{ .Values.externalValkey.host }}
|
host: {{ .Values.externalValkey.host | b64enc }}
|
||||||
port: {{ .Values.externalValkey.port }}
|
port: {{ .Values.externalValkey.port | quote | b64enc }}
|
||||||
password: {{ .Values.externalValkey.password }}
|
password: {{ .Values.externalValkey.password | b64enc }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|||||||
Reference in New Issue
Block a user