Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable/kube-bench] Update kube-bench image to 0.6.17 #504

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stable/kube-bench/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
apiVersion: v2
appVersion: 0.6.16
appVersion: 0.6.17
description: "Helm chart to deploy run kube-bench as a cronjob on aks, gke or eks."
name: kube-bench
version: 0.1.12
version: 0.1.13
home: https://github.com/aquasecurity/kube-bench
icon: https://raw.githubusercontent.com/aquasecurity/kube-bench/0d1bd2bbd95608957be024c12d03a0510325e5e2/docs/images/kube-bench.png
sources:
Expand Down
5 changes: 3 additions & 2 deletions stable/kube-bench/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# kube-bench

![Version: 0.1.12](https://img.shields.io/badge/Version-0.1.12-informational?style=flat-square) ![AppVersion: 0.6.16](https://img.shields.io/badge/AppVersion-0.6.16-informational?style=flat-square)
![Version: 0.1.13](https://img.shields.io/badge/Version-0.1.13-informational?style=flat-square) ![AppVersion: 0.6.17](https://img.shields.io/badge/AppVersion-0.6.17-informational?style=flat-square)

Helm chart to deploy run kube-bench as a cronjob on aks, gke or eks.

Expand Down Expand Up @@ -54,12 +54,13 @@ helm install my-release deliveryhero/kube-bench -f values.yaml
| fullnameOverride | string | `""` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"aquasec/kube-bench"` | |
| image.tag | string | `"v0.6.16"` | |
| image.tag | string | `"v0.6.17"` | |
| nameOverride | string | `""` | |
| nodeSelector | object | `{}` | |
| podLabels | object | `{}` | |
| provider | string | `"eks"` | |
| resources | object | `{}` | |
| securityContext | object | `{}` | |
| serviceAccount.annotations | object | `{}` | |
| serviceAccount.create | bool | `false` | |
| tolerations | list | `[]` | |
Expand Down
3 changes: 3 additions & 0 deletions stable/kube-bench/templates/cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ spec:
{{- with .Values.volumeMounts }}
volumeMounts: {{ toYaml . | nindent 16 }}
{{- end }}
{{- with .Values.securityContext }}
securityContext: {{ toYaml . | nindent 16 }}
{{- end }}
{{- with .Values.volumes }}
volumes: {{ toYaml . | nindent 12 }}
{{- end }}
Expand Down
10 changes: 9 additions & 1 deletion stable/kube-bench/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cronjob:

image:
repository: aquasec/kube-bench
tag: v0.6.16
tag: v0.6.17
pullPolicy: IfNotPresent

serviceAccount:
Expand All @@ -19,6 +19,14 @@ serviceAccount:
# Annotations to add to the service account
annotations: {}

securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000

extraLabels: {}
podLabels: {}
resources: {}
Expand Down
Loading