25 lines
452 B
YAML
25 lines
452 B
YAML
spec:
|
|
securityContext:
|
|
runAsUser: 1000
|
|
containers:
|
|
- name: zola
|
|
image: ghcr.io/getzola/zola:v0.16.0
|
|
command:
|
|
- openssl
|
|
stdin: true
|
|
tty: true
|
|
- name: python
|
|
image: docker.io/python:3.10
|
|
command:
|
|
- python
|
|
args:
|
|
- c
|
|
- import signal; signal.pause()
|
|
- name: rsync
|
|
image: git.pyrocufflink.net/containerimages/rsync
|
|
command:
|
|
- python3
|
|
args:
|
|
- c
|
|
- import signal; signal.pause()
|