Skip to content

Commit

Permalink
feat(node-analyzer): support settings passed as numbers (#1093)
Browse files Browse the repository at this point in the history
Co-authored-by: Adam Roberts <[email protected]>
  • Loading branch information
jawnsy and aroberts87 authored May 19, 2023
1 parent 00c071c commit 729642d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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.8.52
version: 1.8.53
appVersion: 12.6.0
keywords:
- monitoring
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ data:
{{- end -}}

{{- if .Values.nodeAnalyzer.runtimeScanner.settings.maxImageSizeAllowed }}
max_image_size_allowed: {{ .Values.nodeAnalyzer.runtimeScanner.settings.maxImageSizeAllowed | quote }}
max_image_size_allowed: {{ .Values.nodeAnalyzer.runtimeScanner.settings.maxImageSizeAllowed | int64 | quote }}
{{- end -}}
{{- if .Values.nodeAnalyzer.runtimeScanner.settings.maxFileSizeAllowed }}
analyzer.maxFileSizeAllowed: {{ .Values.nodeAnalyzer.runtimeScanner.settings.maxFileSizeAllowed | quote }}
analyzer.maxFileSizeAllowed: {{ .Values.nodeAnalyzer.runtimeScanner.settings.maxFileSizeAllowed | int64 | quote }}
{{- end -}}
{{- end }}

0 comments on commit 729642d

Please sign in to comment.