-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path11-apply-service-account-cluster-1.yaml
95 lines (95 loc) · 2.22 KB
/
11-apply-service-account-cluster-1.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
apiVersion: apps/v1
kind: Deployment
metadata:
name: position-simulator
spec:
selector:
matchLabels:
app: position-simulator
replicas: 1
template: # template for the pods
metadata:
labels:
app: position-simulator
spec:
containers:
- name: position-simulator
image: nathluu/istio-fleetman-position-simulator:6
env:
- name: SPRING_PROFILES_ACTIVE
value: production-microservice
command: ["java","-Xmx50m","-jar","webapp.jar"]
imagePullPolicy: Always
serviceAccountName: position-simulator
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: position-tracker
spec:
selector:
matchLabels:
app: position-tracker
replicas: 1
template: # template for the pods
metadata:
labels:
app: position-tracker
spec:
containers:
- name: position-tracker
image: nathluu/istio-fleetman-position-tracker:6
env:
- name: SPRING_PROFILES_ACTIVE
value: production-microservice
command: ["java","-Xmx50m","-jar","webapp.jar"]
imagePullPolicy: Always
serviceAccountName: position-tracker
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: vehicle-telemetry
spec:
selector:
matchLabels:
app: vehicle-telemetry
replicas: 1
template: # template for the pods
metadata:
labels:
app: vehicle-telemetry
spec:
containers:
- name: vehicle-telemtry
image: nathluu/istio-fleetman-vehicle-telemetry:6
env:
- name: SPRING_PROFILES_ACTIVE
value: production-microservice
imagePullPolicy: Always
serviceAccountName: vehicle-telemetry
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: staff-service
spec:
selector:
matchLabels:
app: staff-service
replicas: 1
template: # template for the pods
metadata:
labels:
app: staff-service
spec:
containers:
- name: staff-service
image: nathluu/istio-fleetman-staff-service:6
env:
- name: SPRING_PROFILES_ACTIVE
value: production-microservice
imagePullPolicy: Always
ports:
- containerPort: 8080
serviceAccountName: staff-service