Docker image with kubectl and other Kubernetes utilities
839
Docker image with kubectl and other useful Kubernetes utilities
This image is used when following the 3 Musketeers pattern. By running kubectl inside Docker, we ensure consistency, control and confidence.
kubectl, you can be sure that they will function the same whether you run it on your Windows workstation or on a Jenkins build agent.Makefile:
deploy:
docker-compose run --rm kubectl apply -f k8s-config/deployment.yml
docker-compose.yml:
services:
kubectl:
image: aarongorka/kubernetes-utils:1.10.3
volumes:
- .:/srv/app:Z
- ~/.kube:/root/.kube:Z
working_dir: /srv/app
Content type
Image
Digest
Size
63.4 MB
Last updated
almost 8 years ago
docker pull aarongorka/kubernetes-utils