@@ -2,10 +2,14 @@ kind: Deployment
2
2
apiVersion : apps/v1
3
3
metadata :
4
4
name : ovn-central
5
- namespace : {{ .Values.namespace }}
5
+ {{- with .Values.central.annotations }}
6
6
annotations :
7
- kubernetes.io/description : |
8
- OVN components: northd, nb and sb.
7
+ {{- toYaml . | nindent 4 }}
8
+ {{- end }}
9
+ {{- with .Values.central.labels }}
10
+ labels :
11
+ {{- toYaml . | nindent 4 }}
12
+ {{- end }}
9
13
spec :
10
14
replicas : {{ include "kubeovn.nodeCount" . }}
11
15
strategy :
@@ -15,13 +19,20 @@ spec:
15
19
type : RollingUpdate
16
20
selector :
17
21
matchLabels :
18
- app : ovn-central
22
+ app.kubernetes.io/name : ovn-central
23
+ app.kubernetes.io/part-of : kube-ovn
19
24
template :
20
25
metadata :
26
+ {{- with .Values.central.podAnnotations }}
27
+ annotations :
28
+ {{- toYaml . | nindent 8 }}
29
+ {{- end }}
21
30
labels :
22
- app : ovn-central
23
- component : network
24
- type : infra
31
+ app.kubernetes.io/name : ovn-central
32
+ app.kubernetes.io/part-of : kube-ovn
33
+ {{- with .Values.central.podLabels }}
34
+ {{- toYaml . | nindent 8 }}
35
+ {{- end }}
25
36
spec :
26
37
tolerations :
27
38
- effect : NoSchedule
35
46
requiredDuringSchedulingIgnoredDuringExecution :
36
47
- labelSelector :
37
48
matchLabels :
38
- app : ovn-central
49
+ app.kubernetes.io/name : ovn-central
39
50
topologyKey : kubernetes.io/hostname
40
51
priorityClassName : system-cluster-critical
41
52
serviceAccountName : ovn-ovs
@@ -111,13 +122,10 @@ spec:
111
122
value : " {{ .Values.networking.ENABLE_COMPACT }}"
112
123
- name : OVN_VERSION_COMPATIBILITY
113
124
value : ' {{ include "kubeovn.ovn.versionCompatibility" . }}'
125
+ {{- with .Values.central.resources }}
114
126
resources :
115
- requests :
116
- cpu : {{ index .Values "ovn-central" "requests" "cpu" }}
117
- memory : {{ index .Values "ovn-central" "requests" "memory" }}
118
- limits :
119
- cpu : {{ index .Values "ovn-central" "limits" "cpu" }}
120
- memory : {{ index .Values "ovn-central" "limits" "memory" }}
127
+ {{- toYaml . | trim | nindent 12 }}
128
+ {{- end }}
121
129
volumeMounts :
122
130
- mountPath : /var/run/ovn
123
131
name : host-run-ovn
0 commit comments