File tree Expand file tree Collapse file tree 5 files changed +11
-5
lines changed
Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1+
Original file line number Diff line number Diff 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.3
18+ version : 0.14.4
1919
2020# This is the version number of the application being deployed.
2121# renovate:image=ghcr.io/mattlqx/docker-pixelfed
Original file line number Diff line number Diff line change 11# pixelfed
22
3- ![ Version: 0.14.3 ] ( https://img.shields.io/badge/Version-0.14.3 -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.4 ] ( https://img.shields.io/badge/Version-0.14.4 -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
55A Helm chart for deploying Pixelfed on Kubernetes
66
Original file line number Diff line number Diff line change 11{{- if not .Values.pixelfed.mail.existingSecret }}
2+ {{- $username := .Values.pixelfed.mail.username | required ".Values.pixelfed.mail.username is required" }}
3+ {{- $password := .Values.pixelfed.mail.password | required ".Values.pixelfed.mail.password is required" }}
24---
35apiVersion : v1
46kind : Secret
810 host : {{ .Values.pixelfed.mail.host | b64enc }}
911 port : {{ .Values.pixelfed.mail.port | quote | b64enc}}
1012 {{- if .Values.pixelfed.mail.username }}
11- username : {{ .Values.pixelfed.mail. username | b64enc }}
13+ username : {{ $ username | b64enc }}
1214 {{- end }}
1315 {{- if .Values.pixelfed.mail.password }}
14- password : {{ .Values.pixelfed.mail. password | b64enc }}
16+ password : {{ $ password | b64enc }}
1517 {{- end }}
1618{{- end }}
Original file line number Diff line number Diff line change @@ -261,7 +261,6 @@ valkey:
261261 # default: nano
262262 resourcesPreset : " small"
263263
264-
265264postgresql :
266265 # -- enable the bundled [postgresql sub chart from Bitnami](https://github.com/bitnami/charts/blob/main/bitnami/postgresql/README.md#parameters).
267266 # Must set to true if externalDatabase.enabled=false
@@ -270,6 +269,10 @@ postgresql:
270269 global :
271270 storageClass : " "
272271
272+ volumePermissions :
273+ # -- If you get "mkdir: cannot create directory ‘/bitnami/postgresql/data’: Permission denied"
274+ # error, set these (This often happens on setups like minikube)
275+ enabled : false
273276
274277# -- PHP Configuration files
275278# Will be injected in /usr/local/etc/php-fpm.d
You can’t perform that action at this time.
0 commit comments