Initial commit

This commit is contained in:
Martin Šalata
2021-04-02 21:53:17 +02:00
commit da0fc5b188
27 changed files with 2162 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
FROM alpine:3.13.4
RUN apk add bash curl openssl \
&& curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" \
&& chmod 755 ./kubectl \
&& mv ./kubectl /usr/bin/kubectl