Merge pull request #657 from 3dwardch3ng/app/obsidian

update env vars and ports
This commit is contained in:
2024-07-25 07:43:21 +10:00
committed by GitHub

View File

@@ -14,18 +14,41 @@ spec:
labels: labels:
app.kubernetes.io/name: obsidian app.kubernetes.io/name: obsidian
spec: spec:
securityContext:
runAsUser: 1000
runAsGroup: 1000
containers: containers:
- name: obsidian - name: obsidian
image: ghcr.io/sytone/obsidian-remote:0.1.1 image: ghcr.io/sytone/obsidian-remote:0.1.1
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: true
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: TZ
value: "Australia/Sydney"
- name: DOCKER_MODS
value: "linuxserver/mods:universal-git"
- name: CUSTOM_PORT
value: "8080"
- name: CUSTOM_HTTPS_PORT
value: "8443"
- name: KEYBOARD
value: "en-us-qwerty"
- name: TITLE
value: "Obsidian"
- name: CUSTOM_USER
value: ""
- name: PASSWORD
value: ""
- name: SUBFOLDER
value: ""
ports: ports:
- protocol: TCP - protocol: TCP
containerPort: 8080 containerPort: 8080
name: http name: http
- protocol: TCP
containerPort: 8443
name: https
volumeMounts: volumeMounts:
- name: obsidian-config - name: obsidian-config
mountPath: /config mountPath: /config