forked from jasonumiker-sysdig/example-scenarios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecurity-playground-restricted.yaml
77 lines (77 loc) · 1.95 KB
/
security-playground-restricted.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
apiVersion: v1
kind: Namespace
metadata:
name: security-playground-restricted
labels:
pod-security.kubernetes.io/enforce: restricted
pod-security.kubernetes.io/audit: restricted
pod-security.kubernetes.io/warn: restricted
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: security-playground-restricted
namespace: security-playground-restricted
labels:
app.kubernetes.io/name: security-playground-restricted
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: security-playground-restricted
template:
metadata:
labels:
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:110623
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"
---
apiVersion: v1
kind: Service
metadata:
name: security-playground-restricted
namespace: security-playground-restricted
labels:
app.kubernetes.io/name: security-playground-restricted
spec:
type: NodePort
ports:
- port: 8080
targetPort: http
protocol: TCP
name: http
nodePort: 30001
selector:
app.kubernetes.io/name: security-playground-restricted