-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e36716
commit f7d12f6
Showing
1 changed file
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,26 @@ | ||
# optikube-helm-chart | ||
# OptiKube Helm Chart | ||
|
||
## Version Support | ||
| Chart Version | Kubernetes Min | Kubernetes Max | | ||
|---------------|----------------|----------------| | ||
| 1.0.1 | 1.20 | 1.30 | | ||
|
||
## Installation | ||
To install via Helm, run the following command in your terminal. | ||
``` | ||
helm repo add optikube https://optikube.github.io/optikube-helm-chart/ && \ | ||
helm repo update && \ | ||
helm install optikube optikube/optikube --namespace optikube --create-namespace | ||
``` | ||
## Updating OptiKube | ||
To update your current version of OptiKube via Helm, run the following command in your terminal. | ||
``` | ||
helm repo add optikube https://optikube.github.io/optikube-helm-chart/ && \ | ||
helm repo update && \ | ||
helm upgrade optikube optikube/optikube -n optikube | ||
``` | ||
## Deleting OptiKube | ||
To remove remove OptiKube from your cluster via Helm, run the following command in your terminal. | ||
``` | ||
helm uninstall optikube -n optikube | ||
``` |