Я думаю, что ваша команда неверна:
helm install -f stable/prometheus/values.yaml prometheus --name stable/prometheus --namespace prometheus --version 6.7.4
Команда установки Helm:
helm install [CHART] [flags]
Так что в вашем случае это должно быть:
helm install prometheus stable/prometheus -f stable/prometheus/values.yaml --namespace prometheus
- версия используется для версий диаграммы:
--version string Specify the exact chart version to use. If this is not specified, the latest version is used
Приведенная выше команда установит версию Prometheus, указанную в values.yaml в tag
, но прочитайте ее: https://github.com/helm/charts/tree/master/stable/prometheus
для получения полного списка параметров.