seldon-core官方文档中Install的过程是使用helm 3之前的版本,--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
原文:https://www.cnblogs.com/yilson/p/11891026.html