Merge pull request #582 from Remedan/fix-docs-for-k8s-sts
Fix small issues in the K8s sts documentation
This commit is contained in:
commit
30645bc4e0
1 changed files with 3 additions and 1 deletions
|
@ -371,7 +371,7 @@ unmanned pod.
|
||||||
containers:
|
containers:
|
||||||
- name: ntfy
|
- name: ntfy
|
||||||
image: binwiederhier/ntfy
|
image: binwiederhier/ntfy
|
||||||
args: ["serve", "--cache-file /var/cache/ntfy/cache.db"]
|
args: ["serve", "--cache-file", "/var/cache/ntfy/cache.db"]
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 80
|
- containerPort: 80
|
||||||
name: http
|
name: http
|
||||||
|
@ -379,6 +379,8 @@ unmanned pod.
|
||||||
- name: config
|
- name: config
|
||||||
mountPath: "/etc/ntfy"
|
mountPath: "/etc/ntfy"
|
||||||
readOnly: true
|
readOnly: true
|
||||||
|
- name: cache
|
||||||
|
mountPath: "/var/cache/ntfy"
|
||||||
volumes:
|
volumes:
|
||||||
- name: config
|
- name: config
|
||||||
configMap:
|
configMap:
|
||||||
|
|
Loading…
Reference in a new issue