forked from jasonumiker-sysdig/example-scenarios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hello-clients.yaml
86 lines (86 loc) · 1.88 KB
/
hello-clients.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
apiVersion: v1
data:
API_KEY: c3VwZXJzZWNyZXRhcGlrZXk=
kind: Secret
metadata:
name: hello-secret
namespace: hello
type: Opaque
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: hello
name: hello-client
namespace: hello
spec:
replicas: 1
selector:
matchLabels:
app: hello
template:
metadata:
labels:
app: hello
spec:
automountServiceAccountToken: false
containers:
- image: alpine:3.18.2
name: hello-client
command: ["sh", "-c"]
args: ["while true; do wget -qO- --timeout=2 http://hello-server.team1.svc:8080; sleep 30; done"]
securityContext:
readOnlyRootFilesystem: true
env:
- name: API_KEY
valueFrom:
secretKeyRef:
name: hello-secret
key: API_KEY
resources:
requests:
memory: "256Mi"
cpu: "250m"
limits:
memory: "512Mi"
cpu: "500m"
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: not-hello
name: hello-client-blocked
namespace: hello
spec:
replicas: 1
selector:
matchLabels:
app: not-hello
template:
metadata:
labels:
app: not-hello
spec:
automountServiceAccountToken: false
containers:
- image: alpine:3.18.2
name: hello-client-blocked
command: ["sh", "-c"]
args: ["while true; do wget -qO- --timeout=2 http://hello-server.team1.svc:8080; sleep 30; done"]
securityContext:
readOnlyRootFilesystem: true
env:
- name: API_KEY
valueFrom:
secretKeyRef:
name: hello-secret
key: API_KEY
resources:
requests:
memory: "256Mi"
cpu: "250m"
limits:
memory: "512Mi"
cpu: "500m"