adds commands

This commit is contained in:
Hyatt 2022-08-11 17:59:26 -05:00
parent 63665f0db6
commit 4dd002dea0
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -24,14 +24,18 @@ spec:
- name: alpine
imagePullPolicy: Always
image: ${config.repo}/library/alpine:latest
tty: true"""
tty: true
command:
- /bin/sh"""
}
if (config.fedora == true) {
output += """
- name: fedora
imagePullPolicy: Always
image: ${config.repo}/dockerhub/library/fedora:latest
tty: true"""
tty: true
command:
- /bin/sh"""
}
for (image in customImages) {
if (image.name && image.name != "" && image.path && image.path != "") {