/oci-oke-docker

OKE - Oracle Cloud Infrastructure CLI and Kubectl in a Container

Primary LanguageDockerfileMIT LicenseMIT

oci-oke-docker

OKE - Oracle Cloud Infrastructure CLI and Kubernetes CLI in a Container

Docker container with OCI CLI and Kubernetes CLI kubectl pre-installed to run the CLIs in an isolated environment.

Usage

$ docker run \
	-it --name oci-oke-cli \
	-v ${HOME}/.oci:/root/.oci \
	-v ${HOME}/.kube:/root/.kube \
	mislas87/oci-oke-cli:0.2.0 -h

or, override the entrypoint and run Bash in the container

$ docker run \
	--rm -it --name oci-oke-cli \
	-v ${HOME}/.oci:/root/.oci \
	-v ${HOME}/.kube:/root/.kube \
	--entrypoint bash mislas87/oci-oke-cli:0.2.0

I use this project as base.