File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 22set -v
33
44# Install kubectl
5- curl -Lo kubectl https://storage.googleapis.com/kubernetes- release/release/ ${K8S_VERSION} /bin/linux/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
5+ curl -Lo ./ kubectl " https://dl.k8s.io/ release/${K8S_VERSION} /bin/linux/amd64/kubectl" && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
66
77# Install kind
8- curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION} /kind-$( uname ) -amd64 && chmod +x ./kind && sudo mv ./kind /usr/local/bin/
8+ curl -Lo ./kind " https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION} /kind-linux -amd64" && chmod +x ./kind && sudo mv ./kind /usr/local/bin/
99
1010# Create a single node cluster
11- kind create cluster --image kindest/node:${K8S_VERSION}
11+ kind create cluster --image " kindest/node:${K8S_VERSION} "
1212
1313# Wait for cluster to be ready
1414JSONPATH=' {range .items[*]}{@.metadata.name}:{range @.status.conditions[*]}{@.type}={@.status};{end}{end}' ;
You can’t perform that action at this time.
0 commit comments