Skip to content

Commit

Permalink
Bshramin patch 1 (#93)
Browse files Browse the repository at this point in the history
* Fix number values in secret.yaml

Signed-off-by: Amin Bashiri <[email protected]>

* Version bump

Signed-off-by: Matt Ray <[email protected]>

---------

Signed-off-by: Amin Bashiri <[email protected]>
Signed-off-by: Matt Ray <[email protected]>
Co-authored-by: Amin Bashiri <[email protected]>
  • Loading branch information
mattray and bshramin authored Jul 7, 2023
1 parent c6c6c3a commit f83e25c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/opencost/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords:
- kubecost
- opencost
- monitoring
version: 1.17.0
version: 1.17.1
maintainers:
- name: mattray
url: https://mattray.dev
Expand Down
2 changes: 1 addition & 1 deletion charts/opencost/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

OpenCost and OpenCost UI

![Version: 1.17.0](https://img.shields.io/badge/Version-1.17.0-informational?style=flat-square)
![Version: 1.17.1](https://img.shields.io/badge/Version-1.17.1-informational?style=flat-square)
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![AppVersion: 1.104.4](https://img.shields.io/badge/AppVersion-1.104.0-informational?style=flat-square)

Expand Down
4 changes: 2 additions & 2 deletions charts/opencost/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ metadata:
{{- end }}
data:
{{- if .Values.opencost.prometheus.username }}
{{ .Values.opencost.prometheus.username_key }}: {{ .Values.opencost.prometheus.username | b64enc | quote }}
{{ .Values.opencost.prometheus.username_key }}: {{ .Values.opencost.prometheus.username | toString | b64enc | quote }}
{{- end }}
{{- if .Values.opencost.prometheus.password }}
{{ .Values.opencost.prometheus.password_key }}: {{ .Values.opencost.prometheus.password | b64enc | quote }}
{{ .Values.opencost.prometheus.password_key }}: {{ .Values.opencost.prometheus.password | toString | b64enc | quote }}
{{- end }}
{{- if .Values.opencost.prometheus.bearer_token }}
{{ .Values.opencost.prometheus.bearer_token_key }}: {{ .Values.opencost.prometheus.bearer_token | b64enc | quote }}
Expand Down

0 comments on commit f83e25c

Please sign in to comment.