Skip to content

Commit

Permalink
Fixing templates for additionalContainers definitions, part two.
Browse files Browse the repository at this point in the history
Typing is hard..
  • Loading branch information
samip5 committed Apr 5, 2024
1 parent 3a6387a commit c78b7bc
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions charts/apps/piped/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sources:
- https://github.com/TeamPiped/piped-proxy
keywords:
- streaming
version: 5.1.0
version: 5.1.1
appVersion: latest
kubeVersion: ">=1.22.0-0"
maintainers:
Expand All @@ -28,4 +28,4 @@ dependencies:
annotations:
artifacthub.io/changes: |-
- kind: fixed
description: Pod templates for addionalContainers values.
description: Pod templates for addionalContainers values, part two.
2 changes: 1 addition & 1 deletion charts/apps/piped/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# piped

![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)
![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)

Piped is an alternative privacy-friendly YouTube frontend which is efficient by design.

Expand Down
2 changes: 1 addition & 1 deletion charts/apps/piped/templates/backend/lib/_pod.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ containers:
{{- range $index, $key := (keys .Values.backend.additionalContainers | uniq | sortAlpha) }}
{{- $container := get $.Values.backend.initContainers $key }}
{{- if not $container.name -}}
{{- $_ := set $container "name" $name }}
{{- $_ := set $container "name" $key }}
{{- end }}
{{- if $container.env -}}
{{- $_ := set $ "ObjectValues" (dict "env" $container.env) -}}
Expand Down
2 changes: 1 addition & 1 deletion charts/apps/piped/templates/frontend/lib/_pod.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ containers:
{{- range $index, $key := (keys .Values.frontend.additionalContainers | uniq | sortAlpha) }}
{{- $container := get $.Values.frontend.additionalContainers $key }}
{{- if not $container.name -}}
{{- $_ := set $container "name" $name }}
{{- $_ := set $container "name" $key }}
{{- end }}
{{- if $container.env -}}
{{- $_ := set $ "ObjectValues" (dict "env" $container.env) -}}
Expand Down
2 changes: 1 addition & 1 deletion charts/apps/piped/templates/ytproxy/lib/_pod.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ containers:
{{- range $index, $key := (keys .Values.ytproxy.additionalContainers | uniq | sortAlpha) }}
{{- $container := get $.Values.ytproxy.additionalContainers $key }}
{{- if not $container.name -}}
{{- $_ := set $container "name" $name }}
{{- $_ := set $container "name" $key }}
{{- end }}
{{- if $container.env -}}
{{- $_ := set $ "ObjectValues" (dict "env" $container.env) -}}
Expand Down

0 comments on commit c78b7bc

Please sign in to comment.