Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thorstenhans/helm3-docker

Docker Image shipping helm3 and kubectl
https://github.com/thorstenhans/helm3-docker

docker helm kubectl

Last synced: 3 months ago
JSON representation

Docker Image shipping helm3 and kubectl

Awesome Lists containing this project

README

        

# Helm Docker Image

This docker image contains [Helm CLI](https://helm.sh) and [kubectl](https://kubernetes.io). You can specify the desired version of Helm 3, by setting the `HELM_VERSION` var. It currently defaults to `3.8.2`.

## Basic Usage Instructions

### Default behavior

By default, the container will execute `helm`.

```bash
docker run thorstenhans/helm3

```

### Execute Helm sub-commands

You can execute any `helm` sub-command as shown here:

```bash
docker run thorstenhans/helm3 version

```

### Execute kubectl command

You can also invoke any `kubectl` command, by overwriting the entry-point of the container

```bash
docker run --rm -it --entrypoint kubectl thorstenhans/helm3 version

```