fix: quote bool for ntfy

This commit is contained in:
Tommy 2024-04-06 21:35:19 +02:00
parent 975125e2e0
commit 061f65616f
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@ description: |
ntfy lets you send push notifications to your phone or desktop via scripts from any computer
appVersion: v2.10.0
type: application
version: 0.1.3
version: 0.1.4
maintainers:
- name: Tommy Skaug
email: tommy@skaug.me

View file

@ -19,7 +19,7 @@ spec:
- name: {{ include "ntfy.fullname" . }}-server
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
args: ["serve"]
env: &dispatchEnv
env:
- name: NTFY_BASE_URL
value: {{ .Values.config.baseUrl }}
- name: NTFY_CACHE_FILE
@ -29,11 +29,11 @@ spec:
- name: NTFY_AUTH_DEFAULT_ACCESS
value: deny-all
- name: NTFY_BEHIND_PROXY
value: true
value: "true"
- name: NTFY_ATTACHMENT_CACHE_DIR
value: /var/lib/ntfy/attachments
- name: NTFY_ENABLE_LOGIN
value: true
value: "true"
resources:
limits:
memory: "128Mi"