rverchere / helm-kubectl-krew

Docker Hub image with helm and kubectl on top of alpine linux with bash

Home Page:https://hub.docker.com/r/dtzar/helm-kubectl/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

helm-kubernetes-krew Docker hub image

Theses images extend the dtzar/helm-kubectl including kubectl krew plugin and helm push.

ci Docker Stars Docker Pulls

Supported tags and release links

  • 3.11.3 - helm v3.11.3, kubectl v1.24.13

Overview

This lightweight alpine docker image provides kubectl and helm binaries for working with a Kubernetes cluster. A local configured kubectl is a prerequisite to use helm per helm documentation. This image is useful for general helm administration such as deploying helm charts and managing releases. It is also perfect for any automated deployment pipeline needing to use helm which supports docker images such as Concourse CI, Jenkins on Kubernetes, Travis CI, and Circle CI. Having bash installed allows for better support for troubleshooting by being able to exec / terminal in and run desired shell scripts. Git installed allows installation of helm plugins.

Run

Example to just run helm on entry: docker run --rm rverchere/helm-kubectl-krew helm By default kubectl will try to use /root/.kube/config file for connection to the kubernetes cluster, but does not exist by default in the image.

Example for use with personal administration or troubleshooting with volume mount for kubeconfig files: docker run -it -v ~/.kube:/root/.kube rverchere/helm-kubectl-krew The -v maps your host docker machine Kubernetes configuration directory (~/.kube) to the container's Kubernetes configuration directory (root/.kube).

Build

For doing a manual local build of the image: make docker_build

About

Docker Hub image with helm and kubectl on top of alpine linux with bash

https://hub.docker.com/r/dtzar/helm-kubectl/

License:MIT License


Languages

Language:Dockerfile 62.3%Language:Makefile 37.7%