File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ ARG TARGETARCH
88ARG HELM_VERSION=3.9.0
99ARG KUBECTL_VERSION=1.24.1
1010ARG KUSTOMIZE_VERSION=v4.5.5
11+ ARG KIND_VERSION=v0.14.0
1112
1213# Install helm (latest release)
1314# ENV BASE_URL="https://storage.googleapis.com/kubernetes-helm"
@@ -28,11 +29,14 @@ RUN helm plugin install https://github.com/quintush/helm-unittest && rm -rf /tmp
2829# add helm-push
2930RUN helm plugin install https://github.com/chartmuseum/helm-push && rm -rf /tmp/helm-*
3031
31- # Install kubectl (same version of aws esk)
3232RUN curl -sLO https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VERSION}/bin/linux/${TARGETARCH}/kubectl && \
3333 mv kubectl /usr/bin/kubectl && \
3434 chmod +x /usr/bin/kubectl
3535
36+ RUN curl -sLO https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION}/kind-linux-${TARGETARCH} && \
37+ mv kind-linux-${TARGETARCH} /usr/bin/kind && \
38+ chmod +x /usr/bin/kind
39+
3640# Install kustomize (latest release)
3741RUN curl -sLO https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2F${KUSTOMIZE_VERSION}/kustomize_${KUSTOMIZE_VERSION}_linux_${TARGETARCH}.tar.gz && \
3842 tar xvzf kustomize_${KUSTOMIZE_VERSION}_linux_${TARGETARCH}.tar.gz && \
You can’t perform that action at this time.
0 commit comments