oneuptime/HelmChart/Docs/Helm.md

43 lines
629 B
Markdown
Raw Normal View History

2023-09-24 12:28:45 +00:00
### Installation
```
2023-09-25 10:34:26 +00:00
helm install oneuptime ./HelmChart/public/oneuptime -f ./HelmChart/public/oneuptime/values.yaml
2023-09-24 12:28:45 +00:00
```
### Upgrade
```
2023-09-25 10:34:26 +00:00
helm upgrade oneuptime ./HelmChart/public/oneuptime -f ./HelmChart/public/oneuptime/values.yaml
2023-09-24 12:28:45 +00:00
```
### Remove
```
helm uninstall oneuptime
```
### Lint
```
helm lint ./HelmChart/public/oneuptime
2023-09-26 17:59:18 +00:00
```
2023-09-28 10:16:19 +00:00
### Install in Staging
2023-09-26 17:59:18 +00:00
```
helm install oneuptime ./HelmChart/public/oneuptime -f ./HelmChart/public/oneuptime/values.yaml -f ./HelmChart/test.values.yaml
2023-09-28 10:16:19 +00:00
```
### Run tests
```
helm test oneuptime
2023-09-28 14:40:33 +00:00
```
### Package Helm Charts
```
helm package ./HelmChart/public/oneuptime
2023-09-24 12:28:45 +00:00
```