home-server-helm/values/wiki.yaml
2023-11-12 16:02:19 -05:00

48 lines
875 B
YAML

name: wiki
replicas: 1
image:
repository: linuxserver/grav
imagePullPolicy: Always
tag: 1.7.43
ports:
- containerPort: 80
protocol: TCP
name: tcp80
volumeMounts:
- mountPath: /config
name: cephfs
volumes:
- name: cephfs
persistentVolumeClaim:
claimName: cephfs-wiki
env:
- name: PGID
value: "10000"
- name: PUID
value: "10000"
- name: TZ
value: "America/Toronto"
ingress:
enabled: true
annotations:
kubernetes.io/ingress.class: traefik
cert-manager.io/cluster-issuer: letsencrypt-prod
hosts:
- host: grav.linux-help.org
paths:
- path: /
pathType: Prefix
port: 80
tls:
- secretName: grav-linux-help.org-tls
hosts:
- grav.linux-help.org
pvc:
enabled: true
name: cephfs-wiki
storageClassName: cephfs
size: 1Gi
accessModes:
- ReadWriteMany