mirror of
https://github.com/TeamPiped/Piped-Kubernetes.git
synced 2024-08-14 23:57:15 +00:00
Fixing templates for additionalContainers definitions, part three.
This commit is contained in:
parent
c78b7bc9e8
commit
ac75108ad0
3 changed files with 4 additions and 4 deletions
|
@ -10,7 +10,7 @@ sources:
|
|||
- https://github.com/TeamPiped/piped-proxy
|
||||
keywords:
|
||||
- streaming
|
||||
version: 5.1.1
|
||||
version: 5.1.2
|
||||
appVersion: latest
|
||||
kubeVersion: ">=1.22.0-0"
|
||||
maintainers:
|
||||
|
@ -28,4 +28,4 @@ dependencies:
|
|||
annotations:
|
||||
artifacthub.io/changes: |-
|
||||
- kind: fixed
|
||||
description: Pod templates for addionalContainers values, part two.
|
||||
description: Pod templates for addionalContainers values, part three.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# piped
|
||||
|
||||
![Version: 5.1.1](https://img.shields.io/badge/Version-5.1.1-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
|
||||
![Version: 5.1.2](https://img.shields.io/badge/Version-5.1.2-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.
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ containers:
|
|||
{{- if .Values.backend.additionalContainers }}
|
||||
{{- $additionalContainers := list }}
|
||||
{{- range $index, $key := (keys .Values.backend.additionalContainers | uniq | sortAlpha) }}
|
||||
{{- $container := get $.Values.backend.initContainers $key }}
|
||||
{{- $container := get $.Values.backend.additionalContainers $key }}
|
||||
{{- if not $container.name -}}
|
||||
{{- $_ := set $container "name" $key }}
|
||||
{{- end }}
|
||||
|
|
Loading…
Reference in a new issue