Helm
是Kubernetes上的包管理器,在Mac上通过homebrew
安装它。
安装
命令如下
brew install helm
# Add helm repo
helm repo add stable http://mirror.azure.cn/kubernetes/charts/
# Update charts repo
helm repo update
测试安装
安装 WordPress
helm install wordpress stable/wordpress
查看 wordpress 发布状态
helm status wordpress
卸载 wordpress 发布
helm uninstall wordpress