29 lines
589 B
YAML
29 lines
589 B
YAML
spec:
|
|
nodeSelector:
|
|
kubernetes.io/arch: arm64
|
|
terminationGracePeriodSeconds: 0
|
|
containers:
|
|
- name: build
|
|
image: registry.pyrocufflink.blue/build/basementhud
|
|
command:
|
|
- sleep
|
|
- infinity
|
|
securityContext:
|
|
readOnlyRootFilesystem: true
|
|
privileged: true
|
|
volumeMounts:
|
|
- name: tmp
|
|
mountPath: /tmp
|
|
- name: publish
|
|
image: registry.fedoraproject.org/fedora
|
|
command:
|
|
- sleep
|
|
- infinity
|
|
securityContext:
|
|
readOnlyRootFilesystem: true
|
|
runAsUser: 1000
|
|
volumes:
|
|
- name: tmp
|
|
emptyDir:
|
|
medium: Memory
|