36 lines
655 B
YAML
36 lines
655 B
YAML
spec:
|
|
containers:
|
|
- name: fedora
|
|
command:
|
|
- cat
|
|
stdin: true
|
|
tty: true
|
|
resources:
|
|
requests:
|
|
cpu: 1500m
|
|
volumeMounts:
|
|
- mountPath: /etc/ssh/ssh_known_hosts
|
|
name: ssh-known-hosts
|
|
subPath: ssh_known_hosts
|
|
- name: buildah
|
|
image: quay.io/containers/buildah:v1
|
|
command:
|
|
- cat
|
|
stdin: true
|
|
tty: true
|
|
securityContext:
|
|
capabilities:
|
|
add:
|
|
- SYS_ADMIN
|
|
- MKNOD
|
|
- SYS_CHROOT
|
|
- SETFCAP
|
|
resources:
|
|
limits:
|
|
github.com/fuse: 1
|
|
hostUsers: false
|
|
volumes:
|
|
- name: ssh-known-hosts
|
|
configMap:
|
|
name: ssh-known-hosts
|