Dapr+Kubernetes 实战二
作者:互联网
用 Helm 3 图表在 Kubernetes 上安装 Dapr
一,确保你的机器已经安装了 Helm 3
https://helm.sh/docs/intro/install/
https://get.helm.sh/helm-v3.8.1-windows-amd64.zi
二,添加 Helm 库并更新
helm repo add dapr https://dapr.github.io/helm-charts/ helm repo update # See which chart versions are available helm search repo dapr --devel --versions
三,将 Dapr 图表安装在你的集群的 dapr-system
命名空间中。
helm upgrade --install dapr dapr/dapr \ --version=1.2 \ --namespace dapr-system \ --create-namespace \ --wait
以高可用的方式安装:
helm upgrade --install dapr dapr/dapr \ --version=1.2 \ --namespace dapr-system \ --create-namespace \ --set global.ha.enabled=true \ --wait
四,卸载 Kubernetes 上的 Dapr
helm uninstall dapr --namespace dapr-system
五,当图表安装完成后,验证dapr-operator、dapr-placement、dapr-sidecar-injector和dapr-sentry 的pods是否在dapr-system
命名空间中运行
kubectl get pods --namespace dapr-system
NAME READY STATUS RESTARTS AGE dapr-dashboard-7bd6cbf5bf-xglsr 1/1 Running 0 40s dapr-operator-7bd6cbf5bf-xglsr 1/1 Running 0 40s dapr-placement-7f8f76778f-6vhl2 1/1 Running 0 40s dapr-sidecar-injector-8555576b6f-29cqm 1/1 Running 0 40s dapr-sentry-9435776c7f-8f7yd 1/1 Running 0 40s
标签:实战,Kubernetes,--,namespace,system,Running,Dapr,dapr,helm 来源: https://www.cnblogs.com/mschen/p/16029793.html