fix: quote bool for ntfy
This commit is contained in:
parent
975125e2e0
commit
061f65616f
2 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@ description: |
|
||||||
ntfy lets you send push notifications to your phone or desktop via scripts from any computer
|
ntfy lets you send push notifications to your phone or desktop via scripts from any computer
|
||||||
appVersion: v2.10.0
|
appVersion: v2.10.0
|
||||||
type: application
|
type: application
|
||||||
version: 0.1.3
|
version: 0.1.4
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: Tommy Skaug
|
- name: Tommy Skaug
|
||||||
email: tommy@skaug.me
|
email: tommy@skaug.me
|
||||||
|
|
|
@ -19,7 +19,7 @@ spec:
|
||||||
- name: {{ include "ntfy.fullname" . }}-server
|
- name: {{ include "ntfy.fullname" . }}-server
|
||||||
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
|
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
|
||||||
args: ["serve"]
|
args: ["serve"]
|
||||||
env: &dispatchEnv
|
env:
|
||||||
- name: NTFY_BASE_URL
|
- name: NTFY_BASE_URL
|
||||||
value: {{ .Values.config.baseUrl }}
|
value: {{ .Values.config.baseUrl }}
|
||||||
- name: NTFY_CACHE_FILE
|
- name: NTFY_CACHE_FILE
|
||||||
|
@ -29,11 +29,11 @@ spec:
|
||||||
- name: NTFY_AUTH_DEFAULT_ACCESS
|
- name: NTFY_AUTH_DEFAULT_ACCESS
|
||||||
value: deny-all
|
value: deny-all
|
||||||
- name: NTFY_BEHIND_PROXY
|
- name: NTFY_BEHIND_PROXY
|
||||||
value: true
|
value: "true"
|
||||||
- name: NTFY_ATTACHMENT_CACHE_DIR
|
- name: NTFY_ATTACHMENT_CACHE_DIR
|
||||||
value: /var/lib/ntfy/attachments
|
value: /var/lib/ntfy/attachments
|
||||||
- name: NTFY_ENABLE_LOGIN
|
- name: NTFY_ENABLE_LOGIN
|
||||||
value: true
|
value: "true"
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
memory: "128Mi"
|
memory: "128Mi"
|
||||||
|
|
Loading…
Reference in a new issue