-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdeployment.yaml
99 lines (95 loc) · 1.73 KB
/
deployment.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
---
# Scoped service account
apiVersion: v1
kind: ServiceAccount
metadata:
name: version
namespace: default
automountServiceAccountToken: true
---
# Access for the service account (cluster scoped list)
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: version
rules:
- apiGroups:
- apps
resources:
- deployments
verbs:
- get
- watch
- list
---
# Binding the role to the account
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: version
subjects:
- kind: ServiceAccount
name: version
namespace: default
roleRef:
kind: ClusterRole
name: version
apiGroup: rbac.authorization.k8s.io
---
# Expose the http port of the service
apiVersion: v1
kind: Service
metadata:
name: version
namespace: default
labels:
app: version
spec:
ports:
- port: 80
targetPort: 8000
protocol: TCP
name: http
selector:
app: version
---
# Main deployment
apiVersion: apps/v1
kind: Deployment
metadata:
name: version
namespace: default
labels:
app: version
spec:
replicas: 1
selector:
matchLabels:
app: version
template:
metadata:
labels:
app: version
spec:
serviceAccountName: version
containers:
- name: version
image: ghcr.io/kube-rs/version-rs:1.16.3
imagePullPolicy: IfNotPresent
resources:
limits:
cpu: 100m
memory: 128Mi
requests:
cpu: 50m
memory: 100Mi
ports:
- name: http
containerPort: 8000
protocol: TCP
readinessProbe:
httpGet:
path: /health
port: http
initialDelaySeconds: 5
periodSeconds: 5