forked from jasonumiker-sysdig/example-scenarios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
07-security-playground-restricted-deployment.yaml
53 lines (53 loc) · 1.5 KB
/
07-security-playground-restricted-deployment.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
apiVersion: apps/v1
kind: Deployment
metadata:
name: security-playground-restricted
namespace: security-playground-restricted
labels:
app.kubernetes.io/instance: security-playground-restricted
app.kubernetes.io/name: security-playground-restricted
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/instance: security-playground-restricted
app.kubernetes.io/name: security-playground-restricted
template:
metadata:
labels:
app.kubernetes.io/instance: security-playground
app.kubernetes.io/name: security-playground-restricted
spec:
securityContext:
runAsNonRoot: true
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
seccompProfile:
type: RuntimeDefault
containers:
- name: security-playground-unprivileged
image: public.ecr.aws/m9h2b5e7/security-playground-unprivileged:240324
ports:
- name: http
containerPort: 8080
protocol: TCP
livenessProbe:
httpGet:
path: /health
port: http
readinessProbe:
httpGet:
path: /health
port: http
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop: ["ALL"]
resources:
requests:
memory: "256Mi"
cpu: "250m"
limits:
memory: "512Mi"
cpu: "500m"