use local artifact repository

This commit is contained in:
Hyatt 2022-01-16 15:07:24 -06:00
parent b5545c64ca
commit 8d079dbafd
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -38,7 +38,7 @@ def deletePod (Map config) {
container ("alpine") {
sh """
apk add --no-cache curl
curl -L --silent https://storage.googleapis.com/kubernetes-release/release/\$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl
curl -L --silent https://nexus.c.test-chamber-13.lan/repository/google-k8s/\$(curl -s https://nexus.c.test-chamber-13.lan/repository/google-k8s/stable.txt)/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl
chmod +x /usr/local/bin/kubectl
"""