blob: a24b7e94cb9f55591c3ae46e4a7b393aa7ccfc13 [file] [log] [blame]
Mohammed Naser54ee9922023-07-22 18:40:25 +00001# Copyright (c) 2023 VEXXHOST, Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
15_ovn_helm_values:
16 images:
17 tags: "{{ atmosphere_images | vexxhost.atmosphere.openstack_helm_image_tags('ovn') }}"
18 labels:
19 ovn_ovsdb_nb:
20 node_selector_key: openstack-control-plane
21 node_selector_value: enabled
22 ovn_ovsdb_sb:
23 node_selector_key: openstack-control-plane
24 node_selector_value: enabled
25 ovn_northd:
26 node_selector_key: openstack-control-plane
27 node_selector_value: enabled
Oleksandr K.a9dd1a42024-10-25 19:54:08 +020028 ovn_controller_gw:
29 node_selector_key: openstack-control-plane
30 node_selector_value: enabled
Mohammed Naser54ee9922023-07-22 18:40:25 +000031 volume:
32 ovn_ovsdb_nb:
33 size: 20Gi
34 ovn_ovsdb_sb:
35 size: 20Gi
36 pod:
okozachenko1203d94bb7e2025-02-01 03:36:10 +110037 probes:
38 ovn_northd:
39 northd:
40 liveness:
41 enabled: true
42 params:
43 initialDelaySeconds: 30
44 timeoutSeconds: 30
45 periodSeconds: 60
Jason Hall97caeb22025-02-12 10:33:39 -060046 affinity:
47 anti:
48 type:
49 default: requiredDuringSchedulingIgnoredDuringExecution
50 topologyKey:
51 default: kubernetes.io/hostname
52 weight:
53 default: 10
Mohammed Naser54ee9922023-07-22 18:40:25 +000054 replicas:
55 ovn_ovsdb_nb: 3
56 ovn_ovsdb_sb: 3
57 ovn_northd: 3
vexxhost-bot509956f2024-07-11 13:47:48 +020058 sidecars:
59 ovn_logging_parser: "{{ ovn_network_logging_parser_enabled }}"
60 vector: "{{ ovn_network_logging_parser_enabled }}"