blob: 603b4edf22f14bdda68bb1194a0e2f158c35b231 [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
28 volume:
29 ovn_ovsdb_nb:
30 size: 20Gi
31 ovn_ovsdb_sb:
32 size: 20Gi
33 pod:
34 replicas:
35 ovn_ovsdb_nb: 3
36 ovn_ovsdb_sb: 3
37 ovn_northd: 3
vexxhost-bot99915542024-07-11 13:47:50 +020038 sidecars:
39 ovn_logging_parser: "{{ ovn_network_logging_parser_enabled }}"
40 vector: "{{ ovn_network_logging_parser_enabled }}"