fix: init containers (#40)

This commit is contained in:
Skyler Mäntysaari 2023-07-21 06:00:40 +03:00 committed by GitHub
parent a52fb2b85d
commit 5280698596
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 10 deletions

View File

@ -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

View File

@ -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

View File

@ -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 }}

View File

@ -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 }}

View File

@ -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 }}