blob: 8ee9c1abb2fa32c137822f7ac8b2c171896e66af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
apiVersion: batch/v1
kind: Job
metadata:
name: kube-hunter
spec:
template:
spec:
containers:
- name: kube-hunter
image: {{ dockerhub_repo }}/aquasec/kube-hunter:0.3.1
command: ["python", "kube-hunter.py"]
args: ["--pod", "--report", "json", "--statistics"]
restartPolicy: Never
backoffLimit: 4
|