-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkate.yaml
88 lines (87 loc) · 1.92 KB
/
kate.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRoleBinding
metadata:
name: kate-rbac
subjects:
- kind: ServiceAccount
# Reference to upper's `metadata.name`
name: kate
# Reference to upper's `metadata.namespace`
namespace: default
roleRef:
kind: ClusterRole
name: cluster-admin
apiGroup: rbac.authorization.k8s.io
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: kate
---
apiVersion: v1
kind: Service
metadata:
name: kate
spec:
clusterIP: None
ports:
- port: 8080
name: http
targetPort: http
protocol: TCP
selector:
kate: kate
---
kind: Deployment
apiVersion: extensions/v1beta1
metadata:
name: kate
spec:
replicas: 1
template:
metadata:
labels:
app: kate
spec:
serviceAccountName: kate
volumes:
- name: docker-socket
hostPath:
path: /var/run/docker.socket
- name: docker
hostPath:
path: /var/lib/docker
- name: varrun
hostPath:
path: /var/run
- name: sysfs
hostPath:
path: /sys
containers:
- name: kate
image: andrewwebber/kate:latest
imagePullPolicy: Always
securityContext:
privileged: true
command:
- /usr/local/bin/kate
# Refresh to aggressive, useful for testing
# Namespace to restrict scanning
# Location of remote clair cluster
args: ["-e", "60", "-n", "kate-example", "-c", "http://clair:6060"]
volumeMounts:
- name: varrun
mountPath: /var/run
readOnly: false
- mountPath: /var/run/docker.socket
name: docker-socket
readOnly: false
- mountPath: /var/lib/docker
name: docker
readOnly: true
- name: sysfs
mountPath: /sys
readOnly: true
ports:
- name: http
containerPort: 8080