Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/damola12345/nautlius-helm
https://github.com/damola12345/nautlius-helm
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/damola12345/nautlius-helm
- Owner: Damola12345
- Created: 2022-10-21T21:42:29.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-26T05:05:17.000Z (about 2 years ago)
- Last Synced: 2024-10-11T15:44:49.233Z (3 months ago)
- Language: Smarty
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Happy Helming
## We need a Kubernetes cluster or a minikube
## Install Helm CLI
checkout the [Helm Official documentation](https://helm.sh/docs/intro/quickstart/).```
cd Nautilus-helm
helm create nautilus-example
```## Add K8s files to the Chart
Copy k8s files into our `nautilus-example/templates/` folder
## Test the template
```
helm template nautilus-example
```## Install app using Chart
```
helm install nautilus-example
```## Uninstall app using Chart
```
helm uninstall nautilus-example
```# list our releases
```
helm list
```# upgrade our release
```
helm upgrade nautilus-example nautilus-example --values ./nautilus-example/values.yaml
```