File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ keywords:
99 - finops
1010 - monitoring
1111 - opencost
12- version : 2.2.0
12+ version : 2.2.1
1313maintainers :
1414 - name : jessegoodier
1515 - name : toscott
Original file line number Diff line number Diff line change @@ -143,8 +143,8 @@ $ helm install opencost opencost/opencost
143143| opencost.prometheus.bearer_token_key | string | ` "DB_BEARER_TOKEN" ` | |
144144| opencost.prometheus.existingSecretName | string | ` nil ` | Existing secret name that contains credentials for Prometheus |
145145| opencost.prometheus.external.enabled | bool | ` false ` | Use external Prometheus (eg. Grafana Cloud) |
146- | opencost.prometheus.external.insecureSkipVerify | bool | ` false ` | Whether to disable SSL certificate verification |
147146| opencost.prometheus.external.url | string | ` "https://prometheus.example.com/prometheus" ` | External Prometheus url |
147+ | opencost.prometheus.insecureSkipVerify | bool | ` false ` | Whether to disable SSL certificate verification |
148148| opencost.prometheus.internal.enabled | bool | ` true ` | Use in-cluster Prometheus |
149149| opencost.prometheus.internal.namespaceName | string | ` "prometheus-system" ` | Namespace of in-cluster Prometheus |
150150| opencost.prometheus.internal.port | int | ` 80 ` | Service port of in-cluster Prometheus |
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ spec:
165165 - name : PROMETHEUS_SERVER_ENDPOINT
166166 value : {{ include "opencost.prometheusServerEndpoint" . | quote }}
167167 - name : INSECURE_SKIP_VERIFY
168- value : {{ .Values.opencost.prometheus.external. insecureSkipVerify | quote }}
168+ value : {{ .Values.opencost.prometheus.insecureSkipVerify | quote }}
169169 {{- if .Values.opencost.exporter.cloudProviderApiKey }}
170170 - name : CLOUD_PROVIDER_API_KEY
171171 valueFrom :
Original file line number Diff line number Diff line change @@ -394,13 +394,13 @@ opencost:
394394 bearer_token_key : DB_BEARER_TOKEN
395395 # -- If true, opencost will use kube-rbac-proxy to authenticate with in cluster Prometheus for openshift
396396 kubeRBACProxy : false
397+ # -- Whether to disable SSL certificate verification
398+ insecureSkipVerify : false
397399 external :
398400 # -- Use external Prometheus (eg. Grafana Cloud)
399401 enabled : false
400402 # -- External Prometheus url
401403 url : " https://prometheus.example.com/prometheus"
402- # -- Whether to disable SSL certificate verification
403- insecureSkipVerify : false
404404 internal :
405405 # -- Use in-cluster Prometheus
406406 enabled : true
You can’t perform that action at this time.
0 commit comments