βΈοΈ Start with Helm Chart
π Getting Started with Helm Chartβ
The default credentials to sign in are:
- Username: admin
- Password: admin
π¦ Installing from Registryβ
-
Add OTWLD repository
helm repo add otwld https://helm.otwld.com/
-
Update repository
helm repo update
-
(Optional) Create a configuration file to override or extend default values.yaml
OptionalYou can use the default values.yaml provided in the chart.
Environment VariablesYou can add environment variables in the values.yaml
env: []
envFrom: [] -
Create a namespace
kubectl create namespace velero-ui
-
Install the chart
helm install velero-ui otwld/velero-ui --namespace velero-ui
π₯οΈ Installing from Sourceβ
- Clone the repository
- Using SSH
git clone git@github.com:otwld/velero-ui.git
- Using HTTPS
git clone https://github.com/otwld/velero-ui.git
-
Go to the chart directory
cd velero-ui/kubernetes/chart
-
(Optional) Create a configuration file to override or extend default values.yaml
OptionalYou can use the default values.yaml provided in the chart.
Environment VariablesYou can add environment variables in the values.yaml
env: []
envFrom: [] -
Create a namespace
kubectl create namespace velero-ui
-
Install the chart
helm install velero-ui . --namespace velero-ui
π Upgradingβ
Make adjustments to your values as needed, then run helm upgrade
:
-
Update repository
helm repo update
-
Upgrade
helm upgrade velero-ui olwld/velero-ui --namespace velero-ui --values values.yaml
π Uninstallingβ
To uninstall/delete the velero-ui deployment in the velero-ui namespace:
helm delete velero-ui --namespace velero-ui
See `helm delete --help for a full reference on delete parameters and flags.