Skip to content

Commit a3090a0

Browse files
committed
Version patch bump; move value outside of external
Signed-off-by: Charles Hu <chu@mitre.org>
1 parent 2663d16 commit a3090a0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

charts/opencost/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords:
99
- finops
1010
- monitoring
1111
- opencost
12-
version: 2.2.0
12+
version: 2.2.1
1313
maintainers:
1414
- name: jessegoodier
1515
- name: toscott

charts/opencost/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 |

charts/opencost/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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:

charts/opencost/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)