Skip to content

Commit a1e0a96

Browse files
authored
Merge pull request #32 from small-hack/fix-horizon-templating
fix horizon templating
2 parents 5d73625 + 8316ed6 commit a1e0a96

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

charts/pixelfed/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.14.1
18+
version: 0.14.2
1919

2020
# This is the version number of the application being deployed.
2121
# renovate:image=ghcr.io/mattlqx/docker-pixelfed

charts/pixelfed/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# pixelfed
22

3-
![Version: 0.14.1](https://img.shields.io/badge/Version-0.14.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.12.4-nginx](https://img.shields.io/badge/AppVersion-v0.12.4--nginx-informational?style=flat-square)
3+
![Version: 0.14.2](https://img.shields.io/badge/Version-0.14.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.12.4-nginx](https://img.shields.io/badge/AppVersion-v0.12.4--nginx-informational?style=flat-square)
44

55
A Helm chart for deploying Pixelfed on Kubernetes
66

charts/pixelfed/templates/configmap_env.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ data:
8686

8787
# horizon
8888
HORIZON_PREFIX: {{ .Values.pixelfed.horizon.prefix | quote }}
89-
HORIZON_DARKMODE: {{ .Values.pixelfed.horizon.darkmode | quote }}
89+
{{- with .Values.pixelfed.horizon.darkmode }}
90+
HORIZON_DARKMODE: {{ . | quote }}
91+
{{- end }}
9092

9193
# filesystem
9294
FILESYSTEM_DRIVER: {{ .Values.pixelfed.filesystem.driver }}

0 commit comments

Comments
 (0)