forked from kube-rs/controller-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeployment.yaml
110 lines (106 loc) · 2.29 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
100
101
102
103
104
105
106
107
108
109
110
---
# Scoped service account
apiVersion: v1
kind: ServiceAccount
metadata:
name: doc-controller
namespace: default
automountServiceAccountToken: true
---
# Access for the service account
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: control-docs
rules:
- apiGroups: ["kube.rs"]
resources: ["documents", "documents/status"]
verbs:
- get
- watch
- list
- patch
- apiGroups: ["events.k8s.io"]
resources: ["events"]
verbs: ["create"]
---
# Binding the role to the account in default
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: doc-controller-binding
subjects:
- kind: ServiceAccount
namespace: default
name: doc-controller
roleRef:
kind: ClusterRole
name: control-docs
apiGroup: rbac.authorization.k8s.io
---
# Expose the http port of the service
apiVersion: v1
kind: Service
metadata:
name: doc-controller
namespace: default
labels:
app: doc-controller
spec:
ports:
- port: 80
targetPort: 8080
protocol: TCP
name: http
selector:
app: doc-controller
---
# Main deployment
apiVersion: apps/v1
kind: Deployment
metadata:
name: doc-controller
namespace: default
labels:
app: doc-controller
spec:
replicas: 1
selector:
matchLabels:
app: doc-controller
template:
metadata:
labels:
app: doc-controller
annotations:
prometheus.io/scrape: "true"
prometheus.io/port: "8080"
spec:
serviceAccountName: doc-controller
containers:
- name: doc-controller
image: clux/controller:otel
imagePullPolicy: Always
resources:
limits:
cpu: 200m
memory: 256Mi
requests:
cpu: 50m
memory: 100Mi
ports:
- name: http
containerPort: 8080
protocol: TCP
env:
# We are pointing to tempo or grafana tracing agent's otlp grpc receiver port
- name: OPENTELEMETRY_ENDPOINT_URL
value: "https://promstack-tempo.monitoring.svc.cluster.local:4317"
- name: RUST_LOG
value: "info,kube=debug,controller=debug"
readinessProbe:
httpGet:
path: /health
port: http
initialDelaySeconds: 5
periodSeconds: 5