Update examples of local.conf for OVN
For the default network backend driver is changed to OVN[1], update params for neutron and also kuryr-kubernetes in examples of `local.conf` to deploy OVN. [1] https://review.opendev.org/c/openstack/devstack/+/791436 Signed-off-by: Yasufumi Ogawa <yasufum.o@gmail.com> Change-Id: I04460c525ff5d5751908e12911e4c7797ef09353
This commit is contained in:
parent
a98cd4eaa9
commit
55f3a221be
@ -29,10 +29,9 @@ ENABLE_VERBOSE_LOG_LEVEL=True
|
||||
|
||||
# Neutron ML2 with OpenVSwitch
|
||||
Q_PLUGIN=ml2
|
||||
Q_AGENT=openvswitch
|
||||
Q_AGENT=ovn
|
||||
|
||||
# Disable security groups
|
||||
Q_USE_SECGROUP=False
|
||||
LIBVIRT_FIREWALL_DRIVER=nova.virt.firewall.NoopFirewallDriver
|
||||
|
||||
# Enable heat, networking-sfc, barbican and mistral
|
||||
|
@ -29,10 +29,9 @@ ENABLE_VERBOSE_LOG_LEVEL=True
|
||||
|
||||
# Neutron ML2 with OpenVSwitch
|
||||
Q_PLUGIN=ml2
|
||||
Q_AGENT=openvswitch
|
||||
Q_AGENT=ovn
|
||||
|
||||
# Disable security groups
|
||||
Q_USE_SECGROUP=False
|
||||
LIBVIRT_FIREWALL_DRIVER=nova.virt.firewall.NoopFirewallDriver
|
||||
|
||||
# Enable neutron, heat, networking-sfc, barbican and mistral
|
||||
@ -65,6 +64,10 @@ enable_plugin octavia https://opendev.org/openstack/octavia master
|
||||
enable_plugin devstack-plugin-container https://opendev.org/openstack/devstack-plugin-container master
|
||||
#KURYR_K8S_CLUSTER_IP_RANGE="10.0.0.0/24"
|
||||
|
||||
enable_service kubernetes-master
|
||||
enable_service kuryr-kubernetes
|
||||
enable_service kuryr-daemon
|
||||
|
||||
[[post-config|/etc/neutron/dhcp_agent.ini]]
|
||||
[DEFAULT]
|
||||
enable_isolated_metadata = True
|
||||
|
@ -4,6 +4,7 @@
|
||||
############################################################
|
||||
HOST_IP=127.0.0.1
|
||||
SERVICE_HOST=127.0.0.1
|
||||
|
||||
SERVICE_PASSWORD=devstack
|
||||
ADMIN_PASSWORD=devstack
|
||||
SERVICE_TOKEN=devstack
|
||||
|
@ -38,14 +38,6 @@ if [ "${TACKER_MODE}" == "all" ]; then
|
||||
disable_service n-net
|
||||
VIRT_DRIVER=libvirt
|
||||
|
||||
# TACKER_NEUTRON_AGENTS can be disabled by adding
|
||||
# TACKER_NEUTRON_AGENTS='' in local.conf if neutron agents are running on a separate node
|
||||
TACKER_NEUTRON_AGENTS=${TACKER_NEUTRON_AGENTS:-q-agt,q-dhcp,q-meta,q-l3}
|
||||
for i in $(echo $TACKER_NEUTRON_AGENTS | sed 's/,/ /g')
|
||||
do
|
||||
enable_service $i
|
||||
done
|
||||
|
||||
enable_service q-svc
|
||||
enable_service neutron
|
||||
|
||||
@ -64,7 +56,7 @@ if [ "${TACKER_MODE}" == "all" ]; then
|
||||
done
|
||||
|
||||
# enable kuryr-kubernetes services
|
||||
KURYR_KUBERNETES_AGENTS=${KURYR_KUBERNETES_AGENTS:-etcd3,kubernetes-api,kubernetes-controller-manager,kubernetes-scheduler,kubelet,kuryr-kubernetes,kuryr-daemon}
|
||||
KURYR_KUBERNETES_AGENTS=${KURYR_KUBERNETES_AGENTS:-kubernetes-master,kuryr-kubernetes,kuryr-daemon}
|
||||
for i in $(echo $KURYR_KUBERNETES_AGENTS | sed 's/,/ /g')
|
||||
do
|
||||
enable_service $i
|
||||
|
Loading…
Reference in New Issue
Block a user