mirror of
https://github.com/TeamPiped/Piped-Kubernetes.git
synced 2024-08-14 23:57:15 +00:00
fix: init containers (#40)
This commit is contained in:
parent
a52fb2b85d
commit
5280698596
5 changed files with 10 additions and 10 deletions
|
@ -10,7 +10,7 @@ sources:
|
|||
- https://github.com/TeamPiped/piped-proxy
|
||||
keywords:
|
||||
- streaming
|
||||
version: 3.0.0
|
||||
version: 3.0.1
|
||||
appVersion: latest
|
||||
kubeVersion: ">=1.22.0-0"
|
||||
maintainers:
|
||||
|
@ -27,5 +27,5 @@ dependencies:
|
|||
condition: postgresql.enabled
|
||||
annotations:
|
||||
artifacthub.io/changes: |-
|
||||
- kind: changed
|
||||
description: Backend configmap secret fetching uses now DB_USERNAME and DB_PASSWORD keys.
|
||||
- kind: fixed
|
||||
description: Init containers
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# piped
|
||||
|
||||
![Version: 3.0.0](https://img.shields.io/badge/Version-3.0.0-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
|
||||
![Version: 3.0.1](https://img.shields.io/badge/Version-3.0.1-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
|
||||
|
||||
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
|
||||
|
||||
### Version 3.0.0
|
||||
### Version 3.0.1
|
||||
|
||||
#### Added
|
||||
|
||||
|
@ -168,11 +168,11 @@ N/A
|
|||
|
||||
#### Changed
|
||||
|
||||
* Backend configmap secret fetching uses now DB_USERNAME and DB_PASSWORD keys.
|
||||
N/A
|
||||
|
||||
#### Fixed
|
||||
|
||||
N/A
|
||||
* Init containers
|
||||
|
||||
## Support
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ terminationGracePeriodSeconds: {{ . }}
|
|||
initContainers:
|
||||
{{- $initContainers := list }}
|
||||
{{- range $index, $key := (keys .Values.backend.initContainers | uniq | sortAlpha) }}
|
||||
{{- $container := get $.Values.initContainers $key }}
|
||||
{{- $container := get $.Values.backend.initContainers $key }}
|
||||
{{- if not $container.name -}}
|
||||
{{- $_ := set $container "name" $key }}
|
||||
{{- end }}
|
||||
|
|
|
@ -46,7 +46,7 @@ terminationGracePeriodSeconds: {{ . }}
|
|||
initContainers:
|
||||
{{- $initContainers := list }}
|
||||
{{- range $index, $key := (keys .Values.frontend.initContainers | uniq | sortAlpha) }}
|
||||
{{- $container := get $.Values.initContainers $key }}
|
||||
{{- $container := get $.Values.frontend.initContainers $key }}
|
||||
{{- if not $container.name -}}
|
||||
{{- $_ := set $container "name" $key }}
|
||||
{{- end }}
|
||||
|
|
|
@ -46,7 +46,7 @@ terminationGracePeriodSeconds: {{ . }}
|
|||
initContainers:
|
||||
{{- $initContainers := list }}
|
||||
{{- range $index, $key := (keys .Values.ytproxy.initContainers | uniq | sortAlpha) }}
|
||||
{{- $container := get $.Values.initContainers $key }}
|
||||
{{- $container := get $.Values.ytproxy.initContainers $key }}
|
||||
{{- if not $container.name -}}
|
||||
{{- $_ := set $container "name" $key }}
|
||||
{{- end }}
|
||||
|
|
Loading…
Reference in a new issue