Red Hat Enterprise Linux
There are two sections to the install: adding Calico to OpenStack control nodes, and adding Calico to OpenStack compute nodes. Follow the Common steps on each node before moving on to the specific instructions in the control and compute sections. If you want to create a combined control and compute node, work through all three sections.
- Ensure that you meet the requirements.
- Confirm that you have SSH access to and root privileges on one or more Red Hat Enterprise Linux (RHEL) hosts.
- Make sure you have working DNS between the RHEL hosts (use if you don’t have DNS on your network).
- on the RHEL hosts.
Some steps need to be taken on all machines being installed with Calico. These steps are detailed in this section.
. You may have already added this to install OpenStack.
Configure the Calico repository:
Install the
etcd3-gateway
Python package. A current copy of that code is needed by Calico’s OpenStack driver and DHCP agent, so you should install it withpip3
.yum install python3-pip
pip3 install git+https://github.com/dims/etcd3-gateway.git@5a3157a122368c2314c7a961f61722e47355f981
Edit
/etc/neutron/neutron.conf
. Add a[calico]
section with the following content, where<ip>
is the IP address of the etcd server.[calico]
etcd_host = <ip>
On each control node, perform the following steps:
Delete all configured OpenStack state, in particular any instances, routers, subnets and networks (in that order) created by the install process referenced above. You can do this using the web dashboard or at the command line.
tip
The Admin and Project sections of the web dashboard both have subsections for networks and routers. Some networks may need to be deleted from the Admin section.
caution
The Calico install will fail if incompatible state is left around.
Edit
/etc/neutron/neutron.conf
. In the[DEFAULT]
section, find the line beginning withcore_plugin
, and change it to readcore_plugin = calico
. Also remove any existing setting forservice_plugins
.-
yum install -y calico-control
Restart the neutron server process:
On each compute node, perform the following steps:
Open
/etc/nova/nova.conf
and remove the line from the[DEFAULT]
section that reads:linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
Remove the lines from the
[neutron]
section settingservice_neutron_metadata_proxy
orservice_metadata_proxy
toTrue
, if there are any. Additionally, if there is a line settingmetadata_proxy_shared_secret
, comment that line out as well.Restart nova compute.
If this node is also a controller, additionally restart nova-api.
service openstack-nova-api restart
If they’re running, stop the Open vSwitch services.
Then, prevent the services running if you reboot.
chkconfig openvswitch off
chkconfig neutron-openvswitch-agent off
Then, on your control node, run the following command to find the agents that you just stopped.
neutron agent-list
For each agent, delete them with the following command on your control node, replacing
<agent-id>
with the ID of the agent.neutron agent-delete <agent-id>
Install Neutron infrastructure code on the compute host.
yum install -y openstack-neutron
Edit
/etc/neutron/neutron.conf
. In the[oslo_concurrency]
section, ensure that thelock_path
variable is uncommented and set as follows.# Directory to use for lock files. For security, the specified directory should
# only be writable by the user running the processes that need locking.
# Defaults to environment variable OSLO_LOCK_PATH. If external locks are used,
# a lock path must be set.
lock_path = $state_path/lock
Stop and disable the Neutron DHCP agent, and install the Calico DHCP agent (which uses etcd, allowing it to scale to higher numbers of hosts).
service neutron-dhcp-agent stop
chkconfig neutron-dhcp-agent off
yum install -y calico-dhcp-agent
-
chkconfig neutron-l3-agent off
Repeat for bridging agent and any others.
If this node is not a controller, install and start the Nova Metadata API. This step is not required on combined compute and controller nodes.
Install the BIRD BGP client.
yum install -y bird bird6
Install the
calico-compute
package.yum install -y calico-compute
Configure BIRD. By default Calico assumes that you will deploy a route reflector to avoid the need for a full BGP mesh. To this end, it includes configuration scripts to prepare a BIRD config file with a single peering to the route reflector. If that’s correct for your network, you can run either or both of the following commands.
For IPv4 connectivity between compute hosts:
calico-gen-bird-conf.sh <compute_node_ip> <route_reflector_ip> <bgp_as_number>
And/or for IPv6 connectivity between compute hosts:
calico-gen-bird6-conf.sh <compute_node_ipv4> <compute_node_ipv6> <route_reflector_ipv6> <bgp_as_number>
You will also need to configure your route reflector to allow connections from the compute node as a route reflector client.
If you are configuring a full BGP mesh you need to handle the BGP configuration appropriately on each compute host. The scripts above can be used to generate a sample configuration for BIRD, by replacing the with the IP of one other compute host—this will generate the configuration for a single peer connection, which you can duplicate and update for each compute host in your mesh.
To maintain connectivity between VMs if BIRD crashes or is upgraded, configure BIRD graceful restart. Edit the systemd unit file /usr/lib/systemd/system/bird.service (and bird6.service for IPv6):
- Add
-R
to the end of theExecStart
line. - Add
KillSignal=SIGKILL
as a new line in the[Service]
section. - Run
systemctl daemon-reload
to tell systemd to reread that file.
Ensure that BIRD (and/or BIRD 6 for IPv6) is running and starts on reboot.
service bird restart
service bird6 restart
chkconfig bird on
chkconfig bird6 on
Create
/etc/calico/felix.cfg
with the following content, where<ip>
is the IP address of the etcd server.[global]
DatastoreType = etcdv3
EtcdAddr = <ip>:2379
Restart the Felix service.
service calico-felix restart
This table sets out where to configure each component of Calico for OpenStack, and the detailed access permissions that each component needs: