corrects library

This commit is contained in:
Hyatt 2022-07-06 21:31:59 -05:00
parent 9f14913ea3
commit e710f9e5e1
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
2 changed files with 4 additions and 4 deletions

View File

@ -109,14 +109,14 @@ podTemplate(
writeFile(file: workspace + "/start-server.sh", text: factorioScript) writeFile(file: workspace + "/start-server.sh", text: factorioScript)
sh "chmod +x ${workspace}/start-server.sh" sh "chmod +x ${workspace}/start-server.sh"
declarativeFunctions.buildContainer( functions.buildContainer(
repository: repository, repository: repository,
imageDest: "${repository}/library/factorio:latest", imageDest: "${repository}/library/factorio:latest",
dockerFile: dockerFile, dockerFile: dockerFile,
repoCreds: repositoryCreds, repoCreds: repositoryCreds,
) )
declarativeFunctions.functions.deletePod( functions.deletePod(
kubeAuth: "k8s-game-servers-access", kubeAuth: "k8s-game-servers-access",
kubeURL: "https://k8s.test-chamber-13.lan:8043", kubeURL: "https://k8s.test-chamber-13.lan:8043",
namespace: "game-servers", namespace: "game-servers",

View File

@ -56,7 +56,7 @@ ENTRYPOINT ["/bin/bash", "-c", "/home/steam/ProjectZomboid/start-server.sh"]
} }
} }
functions.buildContainer( declarativeFunctions.buildContainer(
repository: repository, repository: repository,
imageDest: "${repository}/library/project-zomboid:latest", imageDest: "${repository}/library/project-zomboid:latest",
dockerFile: dockerFile, dockerFile: dockerFile,
@ -66,7 +66,7 @@ ENTRYPOINT ["/bin/bash", "-c", "/home/steam/ProjectZomboid/start-server.sh"]
], ],
) )
functions.deletePod( declarativeFunctions.functions.deletePod(
kubeAuth: "k8s-game-servers-access", kubeAuth: "k8s-game-servers-access",
kubeURL: "https://k8s.test-chamber-13.lan:8043", kubeURL: "https://k8s.test-chamber-13.lan:8043",
namespace: "game-servers", namespace: "game-servers",