20 lines
365 B
YAML
20 lines
365 B
YAML
spec:
|
|
containers:
|
|
- name: build
|
|
command: &sleep
|
|
- /bin/sh
|
|
- -c
|
|
- |
|
|
trap 'kill $!' TERM
|
|
sleep infinity &
|
|
wait
|
|
volumeMounts:
|
|
- mountPath: /etc/ssh/ssh_known_hosts
|
|
name: ssh-known-hosts
|
|
subPath: ssh_known_hosts
|
|
hostUsers: false
|
|
volumes:
|
|
- name: ssh-known-hosts
|
|
configMap:
|
|
name: ssh-known-hosts
|