This repository contains the source for the calico/node
container.
For users who want to learn more about the project or get started with Calico, see the documentation on docs.projectcalico.org.
Contributions to this code are welcome! Before starting, make sure you've read the Calico contributor guide.
The entire build can be run within a container, which means the only dependencies you'll need are a functioning Docker installation.
The code in this repository can be built and tested using the Makefile.
make calico/node
will produce thecalico/node
docker image.
For more information, see make help
.
Tests for this repo are divided into the following categories:
fv
: Package scoped testsst
: System integration testsk8s-test
: Kubernetes integration tests
Assuming you have installed the necessary depedencies (see below for details), you can run any of the above categories using:
make <target>
Where target
is one of fv
, st
, or k8s-test
. You can also use test
, which aggregates fv
and st
.
If you want to be able to run tests locally, you will need to install:
- GNU make
For st
system integration tests, node uses:
- Python (>= 2.7 ???)
- Nose
For fv
packaged scoped tests, node uses:
- Golang (>=1.7)
- Ginkgo
You will also need to install Ginkgo explicitly:
go get -u github.com/Masterminds/glide
go get -u github.com/onsi/ginkgo/ginkgo
For k8s-test
Kubernetes tests, you will need to have kubectl
setup on your machine. Go here for instructions on setting up kubectl
for your environment.
If you want to run tests for a specific package for more iterative development, you can filter down into a subset of tests using the following parameters:
- For filtering
st
tests, useST_TO_RUN
- For filtering
k8s-test
tests, useK8ST_TO_RUN
For example, the following only runs tests within the bgp
subfolder of the st
category:
make st ST_TO_RUN="tests/st/bgp/"
To only run tests from a single file (e.g. test_bgp.py
), use the following:
make st ST_TO_RUN="tests/st/bgp/test_bgp.py"
To only run a single test within a test file use the below syntax:
make st ST_TO_RUN="tests/st/bgp/test_bgp.py:TestReadiness.test_readiness_multihost"
The above examples should apply in the same fashion if you are using K8ST_TO_RUN
instead for the k8s-test
category.
There are a number of possible avenues you can use to debug failing tests.
- Review the diagnostic logs after the tests finish running
- These only show for failed tests
- Be warned the logs are quite verbose
- Use the parameter
DEBUG_FAILURES
with the Makefile
make st DEBUG_FAILURES=true
- This only applies to
st
tests - A subset of the
st
are wrapped bydebug_failures(fn)
function found in./tests/st/utils/utils.py
- You should be able to wrap whatever test you want
- Uses Python's
pdb.set_trace()
library function, allows you to halt executino and step into the containers involved in the test for debugging
- Use manual breakpoints
- A more primitive approach is just to add your own breakpoints (using something like
time.sleep(x)
) - You should know where to add these after reviewing the diagnostic logs for failed tests (by looking at the stacktraces)
Below is a listing of userspace tools packaged into the node container. The list is not exhuastive, but highlights some of the key dependencies required for node to operate correctly.
/user/sbin/arp
- Manipulate the system ARP cache
- Package:
net-tools
/user/sbin/conntrack
- Netfilter connection tracking
- Package:
conntrack
/bin/ip
- Show / manipulate routing, devices, policy routing and tunnels
- Package:
iproute2
/usr/sbin/iptables
- Admin tool for IPv4 packet filtering and NAT
- Note, we're using the legacy version
iptables-legacy → xtables-legacy-multi
(divergence introduced iniptables v1.8.2
) - Package:
iptables
/usr/sbin/iptables-restore
- Note, we're using the legacy version
iptables-legacy-restore → xtables-legacy-multi
(divergence introduced iniptables v1.8.2
) - Package:
iptables
- Note, we're using the legacy version
/usr/sbin/iptables-save
- Note, we're using the legacy version
iptables-legacy-save → xtables-legacy-multi
(divergence introduced iniptables v1.8.2
) - Package:
iptables
- Note, we're using the legacy version
/usr/sbin/ip6tables
- Admin tool for IPv6 packet filtering and NAT
- Note, we're using the legacy version
ip6tables-legacy → xtables-legacy-multi
(divergence introduced iniptables v1.8.2
) - Package:
iptables
/usr/sbin/ip6tables-restore
- Note, we using the legacy version
ip6tables-legacy-restore → xtables-legacy-multi
(divergence introduced iniptables v1.8.2
) - Package:
iptables
- Note, we using the legacy version
/usr/sbin/ip6tables-save
- Note, we using the legacy version
ip6tables-legacy-save → xtables-legacy-multi
(divergence introduced iniptables v1.8.2
) - Package:
iptables
- Note, we using the legacy version
/bin/ps
- Snapshot of the current processes
- Package:
procps
/bin/kmod
- Manage Linux Kernel modules
- soft link for
depmod
,insmod
,lsmod
,modinfo
,modprobe
,rmmo
- Package:
kmod
/sbin/runit
- Init scheme with service supervision
- Package:
runit
/usr/sbin/runsvchdir
- Starts and monitors a collection of runsv processes
- Package:
runit