mirror of
https://github.com/TeamPiped/Piped-Kubernetes.git
synced 2025-04-27 23:30:34 +05:30
fix: backend configmap with secrets
This commit is contained in:
parent
5280698596
commit
bf461ea8fb
@ -10,7 +10,7 @@ sources:
|
|||||||
- https://github.com/TeamPiped/piped-proxy
|
- https://github.com/TeamPiped/piped-proxy
|
||||||
keywords:
|
keywords:
|
||||||
- streaming
|
- streaming
|
||||||
version: 3.0.1
|
version: 3.0.2
|
||||||
appVersion: latest
|
appVersion: latest
|
||||||
kubeVersion: ">=1.22.0-0"
|
kubeVersion: ">=1.22.0-0"
|
||||||
maintainers:
|
maintainers:
|
||||||
@ -28,4 +28,4 @@ dependencies:
|
|||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |-
|
artifacthub.io/changes: |-
|
||||||
- kind: fixed
|
- kind: fixed
|
||||||
description: Init containers
|
description: backend configmap with secrets
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# piped
|
# piped
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Piped is an alternative privacy-friendly YouTube frontend which is efficient by design.
|
Piped is an alternative privacy-friendly YouTube frontend which is efficient by design.
|
||||||
|
|
||||||
@ -160,7 +160,7 @@ helm install piped TeamPiped/piped -f values.yaml
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
### Version 3.0.1
|
### Version 3.0.2
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
@ -172,7 +172,7 @@ N/A
|
|||||||
|
|
||||||
#### Fixed
|
#### Fixed
|
||||||
|
|
||||||
* Init containers
|
* backend configmap with secrets
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
|
@ -66,8 +66,8 @@ data:
|
|||||||
hibernate.connection.password: {{.Values.backend.config.database.password }}
|
hibernate.connection.password: {{.Values.backend.config.database.password }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{- if .Values.backend.config.database.secret }}
|
{{- if .Values.backend.config.database.secret }}
|
||||||
hibernate.connection.username: {{ include "common.getValueFromSecret" (dict "Namespace" .Release.Namespace "Name" .Values.backend.config.database.secret "Key" "DB_USERNAME" ) -}}
|
hibernate.connection.username: {{ include "common.getValueFromSecret" (dict "Namespace" .Release.Namespace "Name" .Values.backend.config.database.secret "Key" "DB_USERNAME" ) }}
|
||||||
hibernate.connection.password: {{ include "common.getValueFromSecret" (dict "Namespace" .Release.Namespace "Name" .Values.backend.config.database.secret "Key" "DB_PASSWORD") -}}
|
hibernate.connection.password: {{ include "common.getValueFromSecret" (dict "Namespace" .Release.Namespace "Name" .Values.backend.config.database.secret "Key" "DB_PASSWORD") }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else if .Values.postgresql.enabled }}
|
{{- else if .Values.postgresql.enabled }}
|
||||||
hibernate.connection.url: jdbc:postgresql://piped-postgresql/{{ .Values.postgresql.auth.database}}
|
hibernate.connection.url: jdbc:postgresql://piped-postgresql/{{ .Values.postgresql.auth.database}}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user