-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspring-boot-admin.yaml
129 lines (129 loc) · 3.09 KB
/
spring-boot-admin.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Reader is all you need
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: sba-reader-binding
namespace: ns-01
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: reader
subjects:
- kind: ServiceAccount
name: MyServiceAccount
namespace: ns-01
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: spring-boot-admin
namespace: ns-01
spec:
replicas: 1
selector:
matchLabels:
app: spring-boot-admin
template:
metadata:
labels:
app: spring-boot-admin
spec:
serviceAccountName: MyServiceAccount
containers:
- name: spring-boot-admin
# We used ECR
image: xxxxx.dkr.ecr.ap-southeast-1.amazonaws.com/spring-boot-admin:latest
imagePullPolicy: Always
ports:
- containerPort: 8080
name: management
resources:
# requests:
# memory: "250Mi"
# cpu: "250m"
# ephemeral-storage: "50Mi"
limits:
# memory: "1Gi"
# cpu: "200m"
ephemeral-storage: "100Mi"
---
apiVersion: v1
kind: Service
metadata:
name: spring-boot-admin
namespace: ns-01
spec:
selector:
app: spring-boot-admin
# We used an ingress controller for this, so we didn't need it.
# type: NodePort
ports:
# Monitor self.
# Must match the primary-port-name section in application.yml
- name: actuators
protocol: TCP
port: 8080
targetPort: 8080
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: test-service
namespace: ns-01
spec:
replicas: 1
selector:
matchLabels:
app: test-service
template:
metadata:
labels:
app: test-service
spec:
containers:
- name: test-service
image: yourrepo/yourimage:yourtag
imagePullPolicy: Always
ports:
- containerPort: 8080
name: http
- containerPort: 8081
name: actuators
resources:
# requests:
# memory: "250Mi"
# cpu: "250m"
# ephemeral-storage: "50Mi"
limits:
# memory: "1Gi"
# cpu: "200m"
ephemeral-storage: "100Mi"
env:
- name: SPRING_PROFILES_ACTIVE
value: "dev"
---
apiVersion: v1
kind: Service
metadata:
name: test-service
namespace: ns-01
labels:
# This will match the spring.boot.kubernetes.discovery.service-labels condition.
# With this, you don't need SBA Client to be installed in each service that needs monitoring.
# Just make sure the actuators label below has working actuators, /health at minimum.
spring-boot: "true"
spec:
selector:
app: test-service
# type: NodePort
ports:
# If primary-port-name is not set, this is the default name SBA looks for.
- name: http
protocol: TCP
port: 8080
targetPort: 8080
# Must match the primary-port-name section in application.yml
- name: actuators
protocol: TCP
port: 8081
targetPort: 8081