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 - name: alpine
imagePullPolicy: Always imagePullPolicy: Always
image: ${config.repo}/library/alpine:latest image: ${config.repo}/library/alpine:latest
tty: true""" tty: true
command:
- /bin/sh"""
} }
if (config.fedora == true) { if (config.fedora == true) {
output += """ output += """
- name: fedora - name: fedora
imagePullPolicy: Always imagePullPolicy: Always
image: ${config.repo}/dockerhub/library/fedora:latest image: ${config.repo}/dockerhub/library/fedora:latest
tty: true""" tty: true
command:
- /bin/sh"""
} }
for (image in customImages) { for (image in customImages) {
if (image.name && image.name != "" && image.path && image.path != "") { if (image.name && image.name != "" && image.path && image.path != "") {