blob: b879919e8ab25ee512e4646f5a658ef1b2187fc0 [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.dd6d2792024-10-25 18:36:50 +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:
okozachenko1203619d75c2025-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
Mohammed Naser54ee9922023-07-22 18:40:25 +000046 replicas:
47 ovn_ovsdb_nb: 3
48 ovn_ovsdb_sb: 3
49 ovn_northd: 3
Oleksandr K99dc2fe2024-07-12 00:36:52 +020050 sidecars:
51 ovn_logging_parser: "{{ ovn_network_logging_parser_enabled }}"
52 vector: "{{ ovn_network_logging_parser_enabled }}"