Skip to content

Commit

Permalink
fix(node-analyzer): whitespace errors
Browse files Browse the repository at this point in the history
  • Loading branch information
yurrriq committed Oct 31, 2023
1 parent dc1b3d2 commit a2b1d68
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/node-analyzer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: node-analyzer
description: Sysdig Node Analyzer

# currently matching Sysdig's appVersion 1.14.34
version: 1.17.13
version: 1.17.14
appVersion: 12.8.0
keywords:
- monitoring
Expand Down
10 changes: 5 additions & 5 deletions charts/node-analyzer/templates/secrets.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{{- if not (include "nodeAnalyzer.gke.autopilot" .) }}
{{- if not ( include "nodeAnalyzer.accessKeySecret" . ) }}
{{- if not (include "nodeAnalyzer.accessKeySecret" .) }}
---
apiVersion: v1
kind: Secret
metadata:
Expand All @@ -9,11 +10,11 @@ metadata:
{{ include "nodeAnalyzer.labels" . | indent 4 }}
type: Opaque
data:
access-key : {{ include "nodeAnalyzer.accessKey" . | b64enc | quote }}
access-key: {{ include "nodeAnalyzer.accessKey" . | b64enc | quote }}
{{- end }}
---
{{- end }}
{{- if eq (include "sysdig.custom_ca.useValues" (dict "global" .Values.global.ssl "component" .Values.nodeAnalyzer.ssl)) "true" }}
{{- if eq (include "sysdig.custom_ca.useValues" (dict "global" .Values.global.ssl "component" .Values.nodeAnalyzer.ssl)) "true" }}
---
apiVersion: v1
kind: Secret
metadata:
Expand All @@ -23,5 +24,4 @@ metadata:
{{ include "nodeAnalyzer.labels" . | indent 4 }}
data:
{{ include "sysdig.custom_ca.keyName" (dict "global" .Values.global.ssl "component" .Values.nodeAnalyzer.ssl) }}: {{ include "sysdig.custom_ca.cert" (dict "global" .Values.global.ssl "component" .Values.nodeAnalyzer.ssl "Files" .Subcharts.common.Files) | b64enc | quote }}
---
{{- end }}

0 comments on commit a2b1d68

Please sign in to comment.