dotconfig/pods: add

This commit is contained in:
Luc Bijl 2025-08-17 15:02:06 +02:00
parent 679647542d
commit 2e05501c92
14 changed files with 755 additions and 0 deletions

View file

@ -0,0 +1,34 @@
apiversion: v1
kind: Pod
metadata:
name: share-pod
annotations:
io.podman.annotations.infra.name: share-pod-infra
spec:
containers:
- name: picoshare
image: docker.io/mtlynch/picoshare:latest
env:
- name: PS_SHARED_SECRET
value: ""
- name: PORT
value: 3000
ports:
- containerport: 3000
hostport:
protocol: TCP
volumemounts:
- name: picoshare-data
mountpath: /data
- name: localtime
mountpath: /etc/localtime
readonly: true
volumes:
- name: picoshare-data
persistentvolumeclaim:
claimname: share-pod-picoshare-data
- name: localtime
hostpath:
path: /etc/localtime
type: File