removes un-necessary install of kubectl

This commit is contained in:
Hyatt 2022-03-15 16:51:26 -05:00
parent c5c9ee27d1
commit 2f5e07cd1f
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -72,13 +72,6 @@ podTemplate(
container ("alpine") { container ("alpine") {
sh """ sh """
apk add --no-cache curl jq sed apk add --no-cache curl jq sed
KUBE_VERSION="\$(curl --location --silent https://dl.k8s.io/release/stable.txt)"
curl \
--location \
--silent \
--output /usr/local/bin/kubectl \
"https://dl.k8s.io/release/\${KUBE_VERSION}/bin/linux/amd64/kubectl"
chmod +x /usr/local/bin/kubectl
""" """
} }
} }