御风而翔  
个人云笔记

wget https://labfileapp.oss-cn-hangzhou.aliyuncs.com/helm-v3.9.0-linux-amd64.tar.gz

tar -zxvf helm-v3.9.0-linux-amd64.tar.gz

mv linux-amd64/helm /usr/local/bin/helm

helm repo add bitnami https://charts.bitnami.com/bitnami

helm install wordpress bitnami/wordpress \ --set mariadb.primary.persistence.enabled=true \ --set mariadb.primary.persistence.storageClass=alicloud-disk-ssd \ --set mariadb.primary.persistence.size=20Gi \ --set persistence.enabled=false

helm status wordpress

kubectl get svc wordpress

kubectl get secret wordpress -o jsonpath="{.data.wordpress-password}" | base64 --decode

helm uninstall wordpress

posted on 2023-09-13 13:58  个人记录  阅读(8)  评论(0编辑  收藏  举报