therafk/gitops

By therafk

Updated 4 months ago

kubectl here

Image
Developer Tools
0

10

FROM alpine
LABEL org.opencontainers.image.authors="therafk@email.com"
RUN     apk add curl git vim jq wget && \
        curl -LO https://dl.k8s.io/release/v1.30/bin/linux/amd64/kubectl && \
        cp kubectl /usr/local/bin/kubectl && \
        chmod +x /usr/local/bin/kubectl
kubectl run gitools --image therafk/gitops --dry-run=client -oyaml -- sleep infinity > gittools.yaml

Docker Pull Command

docker pull therafk/gitops