File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,14 @@ RUN echo $TARGETARCH; curl -LO "https://dl.k8s.io/release/$(curl -L -s https://d
43
43
chmod +x kubectl && \
44
44
mv kubectl /usr/local/bin/kubectl
45
45
46
+ # Install kubelogin
47
+ RUN KUBELOGIN_VERSION="v0.2.10" && \
48
+ curl -LO "https://github.com/Azure/kubelogin/releases/download/${KUBELOGIN_VERSION}/kubelogin-linux-${TARGETARCH}.zip" && \
49
+ unzip kubelogin-linux-${TARGETARCH}.zip && \
50
+ mv bin/linux_${TARGETARCH}/kubelogin /usr/local/bin/kubelogin && \
51
+ chmod +x /usr/local/bin/kubelogin && \
52
+ rm -r bin/linux_${TARGETARCH} kubelogin-linux-${TARGETARCH}.zip
53
+
46
54
# Install helm
47
55
RUN HELM_ARCH=${TARGETARCH} && \
48
56
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 && \
You can’t perform that action at this time.
0 commit comments