oneuptime/HelmChart/Docs/Helm.md

50 lines
825 B
Markdown
Raw Normal View History

2023-09-24 12:28:45 +00:00
### Installation
2023-09-29 11:16:48 +00:00
Test Install:
2023-09-24 12:28:45 +00:00
```
2023-09-29 11:16:48 +00:00
helm install oneuptime ./HelmChart/Public/oneuptime -f ./HelmChart/Public/oneuptime/values.yaml -f ./HelmChart/Values/test.values.yaml
2023-09-24 12:28:45 +00:00
```
2023-09-29 11:16:48 +00:00
Prod Install:
2023-09-24 12:28:45 +00:00
```
2023-09-29 11:16:48 +00:00
helm install oneuptime ./HelmChart/Public/oneuptime -f ./HelmChart/Public/oneuptime/values.yaml -f ./HelmChart/Values/prod.values.yaml
2023-09-24 12:28:45 +00:00
```
2023-09-29 11:16:48 +00:00
### Upgrade
Test Upgrade:
2023-09-24 12:28:45 +00:00
```
2023-09-29 11:16:48 +00:00
helm upgrade oneuptime ./HelmChart/Public/oneuptime -f ./HelmChart/Public/oneuptime/values.yaml -f ./HelmChart/Values/test.values.yaml
2023-09-24 12:28:45 +00:00
```
2023-09-29 11:16:48 +00:00
Prod Upgrade:
2023-09-24 12:28:45 +00:00
```
2023-09-29 11:16:48 +00:00
helm upgrade oneuptime ./HelmChart/Public/oneuptime -f ./HelmChart/Public/oneuptime/values.yaml -f ./HelmChart/Values/prod.values.yaml
2023-09-26 17:59:18 +00:00
```
2023-09-29 11:16:48 +00:00
### Remove
2023-09-26 17:59:18 +00:00
```
2023-09-29 11:16:48 +00:00
helm uninstall oneuptime
2023-09-28 10:16:19 +00:00
```
2023-09-29 11:16:48 +00:00
### Lint
2023-09-28 10:16:19 +00:00
```
2023-09-29 11:16:48 +00:00
helm lint ./HelmChart/Public/oneuptime
2023-09-28 14:40:33 +00:00
```
2023-09-29 11:16:48 +00:00
### Run tests
2023-09-28 14:40:33 +00:00
```
2023-09-29 11:16:48 +00:00
helm test oneuptime
2023-10-06 12:41:29 +00:00
```