clickhouse-helm
clickhouse-helm copied to clipboard
Error: unknown flag: --name
when i execute:helm install -f ./clickhouse/values.yaml --name ch --namespace=default ./clickhouse error happened:Error: unknown flag: --name
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
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