helm3 安装seldon-core

seldon-core官方文档中Install的过程是使用helm 3之前的版本,--name参数不被识别

helm2.x与helm3.x install name的变化:

2.x:

helm install stable/nginx-ingress --name my-nginx

3.x:

helm install my-nginx stable/nginx-ingress

安装:

官方安装(helm3)

kubectl create namespace seldon-system
helm install seldon-core seldon-core-operator  --repo https://storage.googleapis.com/seldon-charts --set usageMetrics.enabled=true --namespace seldon-system

或者,分步安装

helm repo add seldon https://storage.googleapis.com/seldon-charts
helm install seldon-core seldon/seldon-core-operator

删除

helm delete seldon-core

猜你喜欢

转载自www.cnblogs.com/yilson/p/11891026.html