blob: 3ccd02e93ea4fe60b4c4680b62c4a0ba4055ad2e [file] [log] [blame]
Mohammed Naserb7b97d62022-03-12 16:30:00 -05001# Copyright (c) 2022 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
Mohammed Naser54ee9922023-07-22 18:40:25 +000015__neutron_helm_values:
Mohammed Naserb7b97d62022-03-12 16:30:00 -050016 endpoints: "{{ openstack_helm_endpoints }}"
17 images:
Michiel Piscaer60d09f92023-01-20 18:58:55 +010018 tags: "{{ atmosphere_images | vexxhost.atmosphere.openstack_helm_image_tags('neutron') }}"
Mohammed Naser1d75a922023-07-23 19:24:49 +000019 network:
20 backend:
21 - "{{ atmosphere_network_backend }}"
Mohammed Naserb7b97d62022-03-12 16:30:00 -050022 pod:
23 replicas:
24 server: 3
25 conf:
Mohammed Naserb7b97d62022-03-12 16:30:00 -050026 neutron:
27 DEFAULT:
28 api_workers: 8
29 dhcp_agents_per_network: 3
30 log_config_append: null
31 rpc_workers: 8
Mohammed Nasera67369e2022-08-19 09:22:06 -040032 service_plugins: qos,router,segments,trunk,vpnaas
Oleksandr Ka45c0e72023-12-11 15:13:00 +010033 external_dns_driver: "{{ _neutron_external_dns_driver | default(omit) }}"
Mohammed Naserb7b97d62022-03-12 16:30:00 -050034 cors:
35 allowed_origin: "*"
Mohammed Naser42998fa2022-05-28 18:02:57 +020036 nova:
37 live_migration_events: true
Rico Linab920612023-10-18 02:09:27 +080038 placement:
39 region_name: "{{ openstack_helm_endpoints_neutron_region_name }}"
40 username: "neutron-{{ openstack_helm_endpoints_neutron_region_name }}"
41 password: "{{ openstack_helm_endpoints_neutron_keystone_password }}"
ricolin2d8dd482022-07-07 06:55:02 +080042 oslo_messaging_notifications:
43 driver: noop
Mohammed Naserb7b97d62022-03-12 16:30:00 -050044 service_providers:
45 service_provider: VPN:strongswan:neutron_vpnaas.services.vpn.service_drivers.ipsec.IPsecVPNDriver:default
46 dhcp_agent:
47 DEFAULT:
Jason Hall28a53952022-10-10 16:50:27 -040048 dnsmasq_dns_servers: "{{ neutron_coredns_cluster_ip | default('10.96.0.20') }}"
Mohammed Naserb7b97d62022-03-12 16:30:00 -050049 enable_isolated_metadata: true
50 l3_agent:
51 AGENT:
52 extensions: vpnaas
53 vpnagent:
54 vpn_device_driver: neutron_vpnaas.services.vpn.device_drivers.strongswan_ipsec.StrongSwanDriver
55 metadata_agent:
56 DEFAULT:
Mohammed Naser67ef2212022-03-14 15:15:26 -040057 nova_metadata_port: 8775
Mohammed Naserb7b97d62022-03-12 16:30:00 -050058 metadata_proxy_shared_secret: "{{ openstack_helm_endpoints['compute_metadata']['secret'] }}"
59 plugins:
60 ml2_conf:
61 ml2:
Mohammed Nasera67369e2022-08-19 09:22:06 -040062 extension_drivers: dns_domain_ports,port_security,qos
Mohammed Naserb7b97d62022-03-12 16:30:00 -050063 type_drivers: flat,gre,vlan,vxlan
64 ml2_type_gre:
65 tunnel_id_ranges: 1:1000
66 ml2_type_vlan:
67 network_vlan_ranges: external:1:4094
68 manifests:
69 ingress_server: false
70 service_ingress_server: false
Mohammed Naser54ee9922023-07-22 18:40:25 +000071
72__neutron_ovn_helm_values:
Mohammed Naser54ee9922023-07-22 18:40:25 +000073 conf:
74 neutron:
75 DEFAULT:
76 service_plugins: qos,ovn-router,segments,trunk
77 ovn:
Rico Linc8785e02023-09-08 01:14:31 +080078 ovn_emit_need_to_frag: true
Mohammed Naser727b5b62023-07-22 19:21:00 +000079 ovn_metadata_agent:
80 DEFAULT:
Mohammed Naser727b5b62023-07-22 19:21:00 +000081 metadata_proxy_shared_secret: "{{ openstack_helm_endpoints['compute_metadata']['secret'] }}"
Mohammed Naser54ee9922023-07-22 18:40:25 +000082 plugins:
83 ml2_conf:
84 ml2:
Mohammed Naser593ec012023-07-23 09:20:05 +000085 type_drivers: flat,vlan,geneve
Mohammed Naser54ee9922023-07-22 18:40:25 +000086 tenant_network_types: geneve
Mohammed Naser54ee9922023-07-22 18:40:25 +000087 manifests:
88 daemonset_dhcp_agent: false
89 daemonset_l3_agent: false
90 daemonset_metadata_agent: false
91 daemonset_ovn_metadata_agent: true
92 daemonset_ovs_agent: false