Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/thorstenhans/helm3-docker
- Owner: ThorstenHans
- Created: 2019-10-02T08:54:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-05-04T06:32:28.000Z (almost 3 years ago)
- Last Synced: 2024-04-14T04:43:57.043Z (10 months ago)
- Topics: docker, helm, kubectl
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 3
- Watchers: 2
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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```