Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/damola12345/nautlius-helm


https://github.com/damola12345/nautlius-helm

Last synced: 21 days ago
JSON representation

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
```