@@ -186,6 +186,36 @@ ovsOvn:
186
186
cpu : " 2"
187
187
memory : " 1000Mi"
188
188
189
+ # -- Configuration for kube-ovn-speaker, the BGP speaker announcing routes to the external world
190
+ speaker :
191
+ # -- Annotations to be added to all top-level kube-ovn-speaker objects (resources under templates/speaker)
192
+ annotations : {}
193
+ # -- Labels to be added to all top-level kube-ovn-speaker objects (resources under templates/speaker)
194
+ labels : {}
195
+ # -- Annotations to be added to kube-ovn-speaker pods
196
+ podAnnotations : {}
197
+ # -- Labels to be added to kube-ovn-speaker pods
198
+ podLabels : {}
199
+
200
+ # -- kube-ovn-speaker resource limits & requests
201
+ # ref: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
202
+ resources :
203
+ requests :
204
+ cpu : " 500m"
205
+ memory : " 300Mi"
206
+ limits : {}
207
+
208
+ # -- Node selector to restrict the deployment of the speaker to specific nodes
209
+ nodeSelector : {}
210
+ # kubernetes.io/os: "linux"
211
+ # ovn.kubernetes.io/bgp: "true"
212
+
213
+ # Args passed to the kube-ovn-speaker pod
214
+ args : []
215
+ # - --neighbor-address=10.32.32.1
216
+ # - --neighbor-as=65030
217
+ # - --cluster-as=65000
218
+
189
219
# -- Configuration for kube-ovn-pinger, the agent monitoring and returning metrics for OVS/external connectivity
190
220
pinger :
191
221
# -- Annotations to be added to all top-level kube-ovn-pinger objects (resources under templates/pinger)
@@ -212,11 +242,11 @@ pinger:
212
242
# -- Configure the port on which the kube-ovn-monitor service will serve metrics
213
243
port : 8080
214
244
215
- # -- Configuration for kube-ovn-monitors , the agent monitoring and returning metrics for the northbound/southbound DBs and northd
245
+ # -- Configuration for kube-ovn-monitor , the agent monitoring and returning metrics for the northbound/southbound DBs and northd
216
246
monitor :
217
- # -- Annotations to be added to all top-level kube-ovn-monitors objects (resources under templates/monitors )
247
+ # -- Annotations to be added to all top-level kube-ovn-monitor objects (resources under templates/monitor )
218
248
annotations : {}
219
- # -- Labels to be added to all top-level kube-ovn-monitors objects (resources under templates/monitors )
249
+ # -- Labels to be added to all top-level kube-ovn-monitor objects (resources under templates/monitor )
220
250
labels : {}
221
251
# -- Annotations to be added to kube-ovn-monitor pods
222
252
podAnnotations : {}
0 commit comments