27 lines
526 B
YAML
27 lines
526 B
YAML
spec:
|
|
containers:
|
|
- name: fetch
|
|
image: docker.io/library/golang:1.21
|
|
command:
|
|
- cat
|
|
stdin: true
|
|
tty: true
|
|
- name: build
|
|
image: git.pyrocufflink.blue/containerimages/build/rpm
|
|
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
|
|
hostUsers: false
|
|
volumes:
|
|
- name: ssh-known-hosts
|
|
configMap:
|
|
name: ssh-known-hosts
|