Skip to content

Commit

Permalink
Fix overzealous whitespace trimming. (prometheus-community#689)
Browse files Browse the repository at this point in the history
The APIService templates will error in their current state due to fields being unintentionally merged into one line.

Signed-off-by: Joe Hohertz <[email protected]>
  • Loading branch information
Joe Hohertz authored Feb 20, 2021
1 parent 4de0671 commit 75a88bf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/prometheus-adapter/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: prometheus-adapter
version: 2.12.0
version: 2.12.1
appVersion: v0.8.3
description: A Helm chart for k8s prometheus adapter
home: https://github.com/DirectXMan12/k8s-prometheus-adapter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
service:
name: {{ template "k8s-prometheus-adapter.fullname" . }}
namespace: {{ .Release.Namespace | quote }}
{{- if .Values.tls.enable -}}
{{- if .Values.tls.enable }}
caBundle: {{ b64enc .Values.tls.ca }}
{{- end }}
group: custom.metrics.k8s.io
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
service:
name: {{ template "k8s-prometheus-adapter.fullname" . }}
namespace: {{ .Release.Namespace | quote }}
{{- if .Values.tls.enable -}}
{{- if .Values.tls.enable }}
caBundle: {{ b64enc .Values.tls.ca }}
{{- end }}
group: external.metrics.k8s.io
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
service:
name: {{ template "k8s-prometheus-adapter.fullname" . }}
namespace: {{ .Release.Namespace | quote }}
{{- if .Values.tls.enable -}}
{{- if .Values.tls.enable }}
caBundle: {{ b64enc .Values.tls.ca }}
{{- end }}
group: metrics.k8s.io
Expand Down

0 comments on commit 75a88bf

Please sign in to comment.