Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/minghsu0107/helm-example-hello
Example Helm chart.
https://github.com/minghsu0107/helm-example-hello
helm kubernetes
Last synced: 5 days ago
JSON representation
Example Helm chart.
- Host: GitHub
- URL: https://github.com/minghsu0107/helm-example-hello
- Owner: minghsu0107
- Created: 2022-09-22T07:02:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-23T09:42:11.000Z (almost 2 years ago)
- Last Synced: 2024-12-17T04:30:07.853Z (about 2 months ago)
- Topics: helm, kubernetes
- Language: Smarty
- Homepage:
- Size: 6.84 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Helm Example Hello World
Example Helm chart.
## Usage
Initialize a new project:
```bash=
mkdir charts && cd charts/
helm create hello-world
```Installation:
```bash
export DEPLOY_NAMESPACE=test
export VALUE_FILE=my/path/to/values.yaml
export DOCKER_TAG=latest
export RELEASE_NAME=hello
helm --kube-context mycluster upgrade --install --namespace $DEPLOY_NAMESPACE \
--values $VALUE_FILE \
--set image.tag=$DOCKER_TAG \
$RELEASE_NAME \
charts/hello-world
# --debug --dry-run
```Check installation:
```bash
helm ls -n test
helm get all $RELEASE_NAME -n test
```Uninstallation:
```bash
helm uninstall $RELEASE_NAME -n test
```