Delete templates/trivy-config.tpl

Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
This commit is contained in:
Kjeld Schouten 2024-05-31 10:51:46 +02:00 committed by GitHub
parent 0555323f4b
commit 4895da81d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
{{- if . -}}
#### Chart Object: {{ escapeXML ( index . 0 ).Target }}
{{ range . }}
{{ if (eq (len .Misconfigurations) 0) }}
| No Misconfigurations found |
|:---------------------------------|
{{ else }}
| Type | Misconfiguration ID | Check | Severity | Explaination | Links |
|:----------------|:------------------:|:-----------:|:------------------:|-----------------------------------------|-----------------------------------------|
{{- range .Misconfigurations }}
| {{ escapeXML .Type }} | {{ escapeXML .ID }} | {{ escapeXML .Title }} | {{ escapeXML .Severity }} | <details><summary>Expand...</summary> {{ escapeXML .Description }} <br /> <hr /> <br /> {{ escapeXML .Message }} </details>| <details><summary>Expand...</summary>{{ range .References }}<a href={{ escapeXML . | printf "%q" }}>{{ escapeXML . }}</a><br>{{ end }}</details> |
{{- end }}
{{- end }}
{{- end }}
{{- else }}
| No Misconfigurations found |
|:---------------------------------|
{{- end }}