-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtwistlock-updater.yaml
285 lines (285 loc) · 7.62 KB
/
twistlock-updater.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
apiVersion: v1
kind: Namespaces
metadata:
name: twistlock
---
apiVersion: v1
kind: ServiceAccount # Service Account is used for managing security context constraints policies in Openshift (SCC)
metadata:
name: twistlock-updater-service
namespace: twistlock
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: twistlock-updater-clusterrole
rules:
- apiGroups: [""]
resources: ["nodes"]
verbs: ["list"]
- apiGroups: ["rbac.authorization.k8s.io"]
resources: ["clusterroles", "clusterrolebindings"]
verbs: ["create", "delete"]
- apiGroups: ["rbac.authorization.k8s.io"]
resources: ["roles", "rolebindings", "clusterroles", "clusterrolebindings"] # Allow Defenders to list RBAC resources
verbs: ["list"]
- apiGroups: ["security.istio.io"]
resources: ["authorizationpolicies", "peerauthentications"] # Allow Defenders to list Istio security resources
verbs: ["list"]
- apiGroups: ["networking.istio.io"]
resources: ["virtualservices", "destinationrules", "gateways"] # Allow Defenders to list Istio networking resources
verbs: ["list"]
- apiGroups: [""] # "" indicates the core API group
resources: ["pods", "endpoints", "services"] # Allow Defenders to list pods, services and endpoints
verbs: ["list"]
- apiGroups: [""] # "" indicates the core API group
resources: ["pods/proxy"] # Allow Defenders to get pod proxy
verbs: ["get"]
- apiGroups: ["apps"]
resources: ["deployments", "replicasets"] # Allow Defenders to get Deployments and ReplicaSets
verbs: ["get"]
- apiGroups: [""] # Core API
resources: ["namespaces", "pods"] # Allow Defenders to get Namespaces and Pods
verbs: ["get"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: twistlock-updater-clusterrolebinding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: twistlock-updater-clusterrole
subjects:
- apiGroup:
kind: ServiceAccount
name: twistlock-updater-service
namespace: twistlock
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: twistlock-updater-role
namespace: twistlock
rules:
- apiGroups:
- "apps"
resources:
- "daemonsets"
verbs:
- "list"
- "create"
- "delete"
- apiGroups:
- ""
- "apps"
- "rbac.authorization.k8s.io"
resources:
- "secrets"
- "serviceaccounts"
- "services"
verbs:
- "create"
- "delete"
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: twistlock-updater-rolebinding
namespace: twistlock
subjects:
- kind: ServiceAccount
name: twistlock-updater-service
namespace: twistlock
roleRef:
kind: Role
name: twistlock-updater-role
apiGroup: rbac.authorization.k8s.io
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: twistlock-updater-data
namespace: twistlock
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storageClassName: default
---
apiVersion: v1
data:
.dockerconfigjson: ${DOCKER_CONFIG}
kind: Secret
metadata:
name: twistlock-updater-pull-secret
namespace: twistlock
type: kubernetes.io/dockerconfigjson
---
apiVersion: v1
kind: Secret
metadata:
name: compute-secret
namespace: twistlock
type: Opaque
data:
username: ${PRISMA_USERNAME}
password: ${PRISMA_PASSWORD}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: daemonset-extra-config
namespace: twistlock
data:
daemonset.extraconfig.yaml: |
annotations:
sample: value
# proxy:
# ca: "-----BEGIN CERTIFICATE-----"
# httpProxy: "https://proxy.example.com:8443"
# user: "myuser"
# password: "mypasswd"
# tolerations:
# - effect: NoSchedule
# key: key1
# operator: Exists
# toleration_seconds: 0
# - effect: NoExecute
# key: key1
# operator: Equals
# toleration_seconds: 0
# value: value1
---
apiVersion: batch/v1
kind: CronJob
metadata:
labels:
app: twistlock-updater
name: twistlock-updater
namespace: twistlock
spec:
schedule: "0 0 * * Sun"
timeZone: "Etc/UTC"
jobTemplate:
spec:
template:
metadata:
name: twistlock-updater
creationTimestamp: null
labels:
app: twistlock-updater
spec:
serviceAccountName: twistlock-updater-service
securityContext:
fsGroup: 10001
seccompProfile:
type: RuntimeDefault
imagePullSecrets:
- name: twistlock-updater-pull-secret
containers:
- image: {IMAGE_NAME}
name: twistlock-updater
env:
- name: COMPUTE_API_ENDPOINT
value: ${COMPUTE_API_ENDPOINT}
- name: PRISMA_USERNAME
valueFrom:
secretKeyRef:
name: compute-secret
key: username
- name: PRISMA_PASSWORD
valueFrom:
secretKeyRef:
name: compute-secret
key: password
- name: SKIP_VERIFY
value: "false"
- name: NAMESPACE
value: twistlock
- name: CONSOLE_NAME
value: ""
- name: COMMUNICATION_PORT
value: ""
- name: ORCHESTRATOR
value: "kubernetes"
- name: CONTAINER_RUNTIME
value: "containerd"
- name: COLLECT_POD_LABELS
value: "true"
- name: MONITOR_SERVICEACCOUNTS
value: "true"
- name: CLUSTER_NAME
value: ""
- name: RUNTIME_SOCKET_PATH
value: ""
- name: NODE_SELECTOR
value: ''
- name: ROLE_ARN
value: ""
- name: UNIQUE_HOSTNAME
value: "false"
- name: MONITOR_ISTIO
value: "true"
- name: BOTTLEROCKET
value: "false"
- name: GKE_AUTOPILOT
value: "false"
- name: TALOS
value: "false"
- name: IMAGE_NAME
value: ""
- name: IMAGE_PULL_SECRET
value: ""
- name: SELINUX
value: "false"
- name: PRIVILEGED
value: "false"
- name: CPU_LIMIT
value: "0"
- name: MEMORY_LIMIT
value: "0"
- name: PRIORITY_CLASS_NAME
value: ""
- name: PROJECT_ID
value: ""
- name: REGION
value: "eastus"
- name: DEBUG
value: "false"
securityContext:
allowPrivilegeEscalation: false
runAsNonRoot: true
runAsUser: 10001
capabilities:
drop:
- ALL
imagePullPolicy: IfNotPresent
volumeMounts:
- mountPath: /app/twistlock
name: twistlock-updater-data
- mountPath: /app/config
name: daemonset-extra-config
resources:
limits:
cpu: 500m
memory: 2Gi
requests:
cpu: 100m
memory: 128Mi
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumes:
- name: twistlock-updater-data
persistentVolumeClaim:
claimName: "twistlock-updater-data"
- name: daemonset-extra-config
configMap:
name: daemonset-extra-config
items:
- key: daemonset.extraconfig.yaml
path: daemonset.extraconfig.yaml
dnsPolicy: ClusterFirst
restartPolicy: OnFailure