Commit 3a6387a 1 parent c17ecec commit 3a6387a Copy full SHA for 3a6387a
File tree 5 files changed +13
-10
lines changed
5 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ sources:
10
10
- https://github.com/TeamPiped/piped-proxy
11
11
keywords :
12
12
- streaming
13
- version : 5.0.2
13
+ version : 5.1.0
14
14
appVersion : latest
15
15
kubeVersion : " >=1.22.0-0"
16
16
maintainers :
@@ -28,4 +28,4 @@ dependencies:
28
28
annotations :
29
29
artifacthub.io/changes : |-
30
30
- kind: fixed
31
- description: ytproxy env variable template
31
+ description: Pod templates for addionalContainers values.
Original file line number Diff line number Diff line change 1
1
# piped
2
2
3
- ![ Version: 5.0.2 ] ( https://img.shields.io/badge/Version-5.0.2 -informational?style=flat-square ) ![ AppVersion: latest] ( https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square )
3
+ ![ Version: 5.1.0 ] ( https://img.shields.io/badge/Version-5.1.0 -informational?style=flat-square ) ![ AppVersion: latest] ( https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square )
4
4
5
5
Piped is an alternative privacy-friendly YouTube frontend which is efficient by design.
6
6
@@ -125,4 +125,4 @@ The following table contains an overview of available values and their descripti
125
125
</details >
126
126
127
127
----------------------------------------------
128
- Autogenerated from chart metadata using [ helm-docs v1.13.1] ( https://github.com/norwoodj/helm-docs/releases/v1.13.1 )
128
+ Autogenerated from chart metadata using [ helm-docs v1.13.1] ( https://github.com/norwoodj/helm-docs/releases/v1.13.1 )
Original file line number Diff line number Diff line change @@ -62,9 +62,10 @@ initContainers:
62
62
{ {- end } }
63
63
containers:
64
64
{ {- include " backend.controller.mainContainer" . | nindent 2 } }
65
- { {- with .Values.additionalContainers } }
65
+ { {- if .Values.backend .additionalContainers } }
66
66
{ {- $additionalContainers := list } }
67
- { {- range $name , $container := . } }
67
+ { {- range $index , $key := (keys .Values.backend.additionalContainers | uniq | sortAlpha) } }
68
+ { {- $container := get $.Values.backend.initContainers $key } }
68
69
{ {- if not $container .name -} }
69
70
{ {- $_ := set $container " name" $name } }
70
71
{ {- end } }
Original file line number Diff line number Diff line change @@ -62,9 +62,10 @@ initContainers:
62
62
{ {- end } }
63
63
containers:
64
64
{ {- include " frontend.controller.mainContainer" . | nindent 2 } }
65
- { {- with .Values.additionalContainers } }
65
+ { {- if .Values.frontend .additionalContainers } }
66
66
{ {- $additionalContainers := list } }
67
- { {- range $name , $container := . } }
67
+ { {- range $index , $key := (keys .Values.frontend.additionalContainers | uniq | sortAlpha) } }
68
+ { {- $container := get $.Values.frontend.additionalContainers $key } }
68
69
{ {- if not $container .name -} }
69
70
{ {- $_ := set $container " name" $name } }
70
71
{ {- end } }
Original file line number Diff line number Diff line change @@ -62,9 +62,10 @@ initContainers:
62
62
{ {- end } }
63
63
containers:
64
64
{ {- include " ytproxy.controller.mainContainer" . | nindent 2 } }
65
- { {- with .Values.additionalContainers } }
65
+ { {- if .Values.ytproxy .additionalContainers } }
66
66
{ {- $additionalContainers := list } }
67
- { {- range $name , $container := . } }
67
+ { {- range $index , $key := (keys .Values.ytproxy.additionalContainers | uniq | sortAlpha) } }
68
+ { {- $container := get $.Values.ytproxy.additionalContainers $key } }
68
69
{ {- if not $container .name -} }
69
70
{ {- $_ := set $container " name" $name } }
70
71
{ {- end } }
You can’t perform that action at this time.
0 commit comments