Skip to content

Commit

Permalink
Merge pull request #263 from jvanz/skip-namespace-bug
Browse files Browse the repository at this point in the history
fix: audit scanner not skipping namespaces.
  • Loading branch information
viccuad authored Jul 24, 2023
2 parents 25c0b7b + 3343e79 commit a080317
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions charts/kubewarden-controller/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,11 @@ Create the name of the service account to use for kubewarden-controller
- --loglevel
- info
{{- range .Values.global.skipNamespaces }}
- {{ printf "-i %s" . }}
- {{ printf "-i" }}
- {{ printf "%s" . }}
{{- end -}}
{{- range .Values.auditScanner.skipAdditionalNamespaces }}
- {{ printf "-i %s" . }}
- {{ printf "-i" }}
- {{ printf "%s" . }}
{{- end -}}
{{- end -}}

0 comments on commit a080317

Please sign in to comment.