You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
368 B
13 lines
368 B
## ADD HELM REPO
|
|
|
|
helm repo add bitnami https://charts.bitnami.com/bitnami
|
|
|
|
## INSTALL HELM REPO
|
|
|
|
helm show values bitnami/mariadb --version=10.5.1 > values.10.5.1.yaml
|
|
|
|
helm install mariadb bitnami/mariadb --namespace dbs --version=10.5.1 --values values.yaml
|
|
|
|
# UPGRADE HELM
|
|
|
|
helm upgrade mariadb bitnami/mariadb --version=10.5.1 --namespace dbs --values values.yaml |