置顶信息:
1、删除释放资源:
1)专有网络下有交换机,交换机绑定路由表、交换机下绑定弹性公网与公网NAT等等,需要一一删除后才能释放所有资源
2)先删除交换机下所绑定的资源(SLS、存储等等),再删除交换机,同步自动删除路由表,最后删除所在的专有网络
3)在专有网络/交换机/资源组,下面可查询定位到所有涉及的资源
需求目标:使用容器服务ACK创建并部署一个简单的无状态应用
[root@iZrj9iu2uuqs4wq12n03s4Z ~]# curl -sSL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
[root@iZrj9iu2uuqs4wq12n03s4Z ~]# helm
添加仓库:
[root@iZrj9iu2uuqs4wq12n03s4Z ~]# helm repo add bitnami https://charts.bitnami.com/bitnami
"bitnami" has been added to your repositories
可能会有WARNNING告警
[root@iZrj9iu2uuqs4wq12n03s4Z ~]# chmod 700 /root/.kube/config
查询应用源
[root@iZrj9iu2uuqs4wq12n03s4Z ~]# helm search repo wordpress
NAME CHART VERSION APP VERSION DESCRIPTION
bitnami/wordpress 19.2.2 6.4.2 WordPress is the world's most popular blogging ...
bitnami/wordpress-intel 2.1.31 6.1.1 DEPRECATED WordPress for Intel is the most popu...
通过helm安装Wordpress(需要关联存储类)
[root@iZrj9iu2uuqs4wq12n03s4Z ~]# 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
注意:由于未关联集群会报错
Error: INSTALLATION FAILED: Kubernetes cluster unreachable: Get "http://localhost:8080/version": dial tcp [::1]:8080: connect: connection refused
查询验证登陆
[root@iZrj9iu2uuqs4wq12n03s4Z ~]# kubectl get po
[root@iZrj9iu2uuqs4wq12n03s4Z ~]# Kubectl get po -w
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。