21 lines
422 B
YAML
21 lines
422 B
YAML
spec:
|
|
securityContext:
|
|
runAsUser: 1000
|
|
containers:
|
|
- name: zola
|
|
image: git.pyrocufflink.net/containerimages/zola
|
|
command:
|
|
- pause
|
|
- name: python
|
|
image: docker.io/python:3.10
|
|
command:
|
|
- python
|
|
args:
|
|
- -c
|
|
- |-
|
|
import signal
|
|
signal.signal(signal.SIGTERM, lambda x, y: None)
|
|
signal.pause()
|
|
- name: rsync
|
|
image: git.pyrocufflink.net/containerimages/rsync
|