-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp-client.yaml
45 lines (45 loc) · 925 Bytes
/
http-client.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
---
apiVersion: v1
kind: Namespace
metadata:
name: http-client
---
apiVersion: v1
kind: ServiceAccount
metadata:
namespace: http-client
name: http-client
---
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: http-client
name: http-client
labels:
app: http-client
spec:
replicas: 1
selector:
matchLabels:
app: http-client
template:
metadata:
labels:
app: http-client
annotations:
diy-service-mesh/inject: "true"
spec:
serviceAcountName: http-client
automountServiceAccountToken: false
securityContext:
runAsNonRoot: true
runAsUser: 65534
runAsGroup: 65534
fsGroup: 65534
containers:
- name: http-client
image: diy-sm-http-client
imagePullPolicy: IfNotPresent
env:
- name: ENDPOINT
value: "http://http-server.http-server.svc.cluster.local./hello"