clickhouse-helm icon indicating copy to clipboard operation
clickhouse-helm copied to clipboard

Error: unknown flag: --name

Open lvxin1986 opened this issue 4 years ago • 2 comments

when i execute:helm install -f ./clickhouse/values.yaml --name ch --namespace=default ./clickhouse error happened:Error: unknown flag: --name

lvxin1986 avatar Jul 15 '20 04:07 lvxin1986

you should change --name to name that you want to pod will get. helm install -f ./clickhouse/values.yaml ch --namespace=default ./clickhouse

there will be pod name ch . but you can erase and write any name that you want

outragee avatar Jul 15 '20 10:07 outragee

when i execute:helm install -f ./clickhouse/values.yaml --name ch --namespace=default ./clickhouse error happened:Error: unknown flag: --name

If you were using helm 3 then you should execute it with: helm install ch -f ./clickhouse/values.yaml --namespace=default ./clickhouse

JasperSui avatar Jan 27 '21 09:01 JasperSui