 [](https://slack.projectcalico.org) [](https://goreportcard.com/report/github.com/projectcalico/felix) # Project Calico
Note that the documentation in this repo is targeted at Calico contributors.This repository contains the source code for Project Calico's per-host daemon, Felix. ## Licensing Felix itself, along with most of Calico, is licensed under the Apache v2.0 license. The BPF programs in the bpf-gpl directory are licensed under the GPL v2.0 for compatibility with Linux kernel helper functions. ## How can I get support for contributing to Project Calico? The best place to ask a question or get help from the community is the [calico-users #slack](https://slack.projectcalico.org). We also have [an IRC channel](https://kiwiirc.com/client/irc.freenode.net/#calico). ## Who is behind Project Calico? [Tigera, Inc.](https://www.tigera.io/) is the company behind Project Calico and is responsible for the ongoing management of the project. However, it is open to any members of the community – individuals or organizations – to get involved and contribute code. ## Contributing Thanks for thinking about contributing to Project Calico! The success of an open source project is entirely down to the efforts of its contributors, so we do genuinely want to thank you for even thinking of contributing. Before you do so, you should check out our contributing guidelines in the `CONTRIBUTING.md` file, to make sure it's as easy as possible for us to accept your contribution. ## How do I build Felix? Felix mostly uses Docker for builds. We develop on Ubuntu 16.04 but other Linux distributions should work (there are known `Makefile` issues that prevent building on OS X). To build Felix, you will need: - A suitable linux box. - To check out the code into your GOPATH. - Docker >=1.12 - GNU make. - Plenty of disk space (since the builds use some heavyweight full-OS containers in order to build debs and RPMs). Then, as a one-off, run ``` make update-tools ``` which will install a couple more go tools that we haven't yet containerised. Then, to build the calico-felix binary: ``` make build ``` or, the `calico/felix` docker image: ``` make image ``` ### Other architectures When you run `make build` or `make image`, it creates the felix binary or docker image for linux on your architecture. The outputs are as follows: * Binary: `bin/calico-felix-${ARCH}`, e.g. `bin/calico-felix-amd64` or `bin/calico-felix-arm64` * Image: `calico/felix:${TAG}-${ARCH}`, e.g. `calico/felix:3.0.0-amd64` or `calico/felix:latest-ppc64le` When you are running on `amd64`, you can build the binaries and images for other platforms by setting the `ARCH` variable. For example: ``` $ make build ARCH=arm64 # OR $ make image ARCH=ppc64le ``` If you wish to make **all** of the binaries or images, use the standard calico project targets `build-all` and `image-all`: ``` $ make build-all # OR $ make image-all ``` Note that the `image` and `image-all` targets have the `build` targets as a dependency. ## How can I run Felix's unit tests? To run all the UTs: ``` make ut ``` To start a `ginkgo watch`, which will re-run the relevant UTs as you update files: ``` make ut-watch ``` To get coverage stats: ``` make cover-report ``` or ``` make cover-browser ``` ## How can I run a subset of the go unit tests? If you want to be able to run unit tests for specific packages for more iterative development, you'll need to install - GNU make - go >=1.10 then run `make update-tools` to install ginkgo, which is the test tool used to run Felix's unit tests. There are several ways to run ginkgo. One option is to change directory to the package you want to test, then run `ginkgo`. Another is to use ginkgo's watch feature to monitor files for changes: ``` cd go ginkgo watch -r ``` Ginkgo will re-run tests as files are modified and saved. ## How can I debug the Felix FV tests using Goland IDE? - Create Goland **GO TEST** runtime configuration - Launch GoLand on your system. - Open your **calico** project. - Go to the **Run menu** in the top toolbar. - Select `Edit Configurations...` from the dropdown. - Click the `"+"` button at the top left of the **Run/Debug Configurations** window and select `Go Test` from the available options. - **Name:** Provide a meaningful name for the configuration, e.g., Debug Felix FV Tests. - **Test kind:** `package` - **Package Path:** set to `github.com/projectcalico/calico/felix/fv` - **Working Directory:** Set the working directory to: `/{path to the project root}/felix/fv` - **GO tool arguments:** `-tags=fvtests` - Check **[x]**`Use all custom build tags` checkbox. - **Program arguments:** `-ginkgo.v` - Add **Before Launch** instructions - Scroll down to the **Before launch** section. - Click on the **+ (Add)** button. - Select **Run External Tool** > External Tools. - Click on **+ (Add)** to create a new external tool. - In the **Name** field, enter: `Build and Prepare Felix` - In the **Program** field, enter: `/bin/bash` - In the **Arguments** field, enter: `-lc "cd $ProjectFileDir$/felix && make build-fv-env"` - In the **Working directory** field, enter: `$ProjectFileDir$` - Click **OK** to save. - Ensure the newly created **Build and Prepare Felix** external tool is added to the **Before launch** list. - Click **Apply** and then click **OK** - If you want to run specific test(s) add **F** letter to the test(s) or test(s) context names, or you can add `-ginkgo.focus="{name of the test}"` attribute to the *Program Arguments* in the IDE Runtime configuration - Click **Debug** button next to the IDE Test configuration that you created before ## How can I debug the Felix FV tests using VS Code? - Create a **Launch Configuration** in VS Code. - Open **VS Code** on your system. - Open your **calico** project. - Ensure you have the **Go extension** installed in VS Code. - Create `.vscode/launch.json` file (if not already created). - Modify the `.vscode/launch.json` file to include the following configuration: ```json { "version": "0.2.0", "configurations": [ { "name": "Debug Felix FV Tests", "type": "go", "request": "launch", "mode": "test", "program": "${workspaceFolder}/felix/fv", "env": { "GOFLAGS": "-tags=fvtests" }, "args": [ "-test.v", "-ginkgo.v" ], "buildFlags": "-tags=fvtests", "cwd": "${workspaceFolder}/felix/fv", "preLaunchTask": "Build and Prepare Felix", "console": "integratedTerminal" } ] } ``` - Save the `launch.json` file. - Add a **PreLaunch Task** to build and prepare Felix. - Open the `.vscode/tasks.json` file (create one if it does not exist). - Add the following task: ```json { "version": "2.0.0", "tasks": [ { "label": "Build and Prepare Felix", "type": "shell", "command": "/bin/bash", "args": [ "-lc", "cd ${workspaceFolder}/felix && make build-fv-env" ], "group": { "kind": "build", "isDefault": true } } ] } ``` - Save the `tasks.json` file. - If you want to run specific test(s), add the **F** letter to the test(s) or test(s) context names, or use the `-ginkgo.focus="{name of the test}"` argument in the **args** section of the `launch.json` configuration. - Start Debugging: - Set breakpoints in your code where needed. - Go to the **Run and Debug** panel. - Select **Debug Felix FV Tests** from the dropdown. - Click **Start Debugging** (`F5`). This setup allows you to debug the Felix FV tests using VS Code with Ginkgo and Go tool configurations. ## How do I build packages/run Felix? ### Docker After building the docker image (see above), you can run Felix and log to screen with, for example: ``` docker run --privileged \ --net=host \ -v /run:/run \ -e FELIX_LOGSEVERITYSCREEN=INFO \ calico/felix ``` Notes: - `--privileged` is required because Felix needs to execute iptables and other privileged commands. - `--net=host` is required so that Felix can manipulate the routes and iptables tables in the host namespace (outside its container). - `-v /run:/run` is required so that Felix shares the global iptables file lock with other processes; this allows Felix and other daemons that manipulate iptables to avoid clobbering each other's updates. - `-e FELIX_LOGSEVERITYSCREEN=INFO` tells Felix to log at info level to stderr. ### Debs and RPMs The `Makefile` has targets for building debs and RPMs for different platforms. By using docker, the build does not need to be run on the target platform. ``` make deb make rpm ``` The packages (and source packages) are output to the dist directory.Documentation for Calico users is here:
http://docs.projectcalico.org