Installation seldon-core helm3

Install the official documentation process seldon-core is before version helm 3, - name parameter is not recognized

helm2.x and helm3.x install name changes:

2.x:

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

3.x:

helm install my-nginx stable/nginx-ingress

installation:

The official installation (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

Alternatively, the mounting step

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

delete

helm delete seldon-core

Guess you like

Origin www.cnblogs.com/yilson/p/11891026.html