Files
basementhud/ci/podTemplate.yaml
Dustin C. Hatch 19cb4256f3
All checks were successful
dustin/basementhud/pipeline/head This commit looks good
ci: Run in kubernetes
2022-12-01 20:03:33 -06:00

32 lines
676 B
YAML

spec:
nodeSelector:
kubernetes.io/arch: arm64
terminationGracePeriodSeconds: 0
containers:
- name: build
image: git.pyrocufflink.net/containerimages/build/basementhud
command:
- sleep
- infinity
securityContext:
readOnlyRootFilesystem: true
privileged: true
volumeMounts:
- name: tmp
mountPath: /tmp
- name: publish
image: git.pyrocufflink.net/containerimages/build/basementhud
command:
- sleep
- infinity
securityContext:
readOnlyRootFilesystem: true
runAsUser: 1000
volumeMounts:
- name: tmp
mountPath: /tmp
volumes:
- name: tmp
emptyDir:
medium: Memory