• Stars
    star
    175
  • Rank 218,059 (Top 5 %)
  • Language
    Dockerfile
  • License
    MIT License
  • Created over 9 years ago
  • Updated almost 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Kubernetes client kubectl container

Kubernetes Client

Build GitHub Action Status

Build and Publish kubectl container

Container Details

Supported tags and respective Dockerfile links

Overview

This container provides the Kubernetes client kubectl which can be used to interact with a Kubernetes cluster.

Supported OS/ARCH

  • linux/amd64
  • linux/arm64
  • linux/s390x
  • linux/ppc64le

Massive thanks to barthy1 via PR for contributing this work.

Build

make docker_build

Run

docker run --rm lachlanevenson/k8s-kubectl:``git rev-parse --abbrev-ref HEAD`` --server=http://<server-name>:8080 get pods

Data Container

In order to get kube spec files accessible via the kubectl container please use the following data container that exposes a data volume under /data. It dumps everything under cwd in the data container.

cat ~/bin/mk-data-container 
#!/usr/bin/env sh

WORKDIR="$1"

if [ -z $WORKDIR ]; then
    WORKDIR='.'
fi

cd $WORKDIR
echo "FROM debian:jessie\n\nVOLUME [ '/data' ]\n\nCOPY * /data/" > ./Dockerfile.data-container
docker rm data
docker build -f ./Dockerfile.data-container -t temp/data .
docker run --name data temp/data
rm ./Dockerfile.data-container

Data container with kubectl container

docker run --rm -it --volumes-from data k8s/kubectl:<tag> --server=http://<server-name>:8080 create -f /data/controller.yml