# calicoctl **Repository Path**: coderaction/calicoctl ## Basic Information - **Project Name**: calicoctl - **Description**: https://github.com/projectcalico/calicoctl - **Primary Language**: Go - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2020-04-18 - **Last Updated**: 2022-03-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Build Status](https://semaphoreci.com/api/v1/calico/calicoctl/branches/master/shields_badge.svg)](https://semaphoreci.com/calico/calicoctl) [![CircleCI branch](https://img.shields.io/circleci/project/projectcalico/calicoctl/master.svg?label=calicoctl)](https://circleci.com/gh/projectcalico/calicoctl/tree/master) [![Slack Status](https://slack.projectcalico.org/badge.svg)](https://slack.projectcalico.org) [![IRC Channel](https://img.shields.io/badge/irc-%23calico-blue.svg)](https://kiwiirc.com/client/irc.freenode.net/#calico) # calicoctl This repository is the home of `calicoctl`.
Note that the documentation in this repo is targeted at Calico contributors.

Documentation for Calico users is here:
https://docs.projectcalico.org

For information on `calicoctl` usage, see the [calicoctl reference information](http://docs.projectcalico.org/master/reference/calicoctl/) ### Install Binary downloads of `calicoctl` can be found on the [Releases page]. Unpack the `calicoctl` binary and add it to your PATH and you are good to go! If you want to use a package manager: - [Homebrew] users can use `brew install calicoctl`. [Releases page]: https://github.com/projectcalico/calicoctl/releases [Homebrew]: https://brew.sh/ ### Developing Print useful actions with `make help`. ### Building `calicoctl` For simplicity, `calicoctl` can be built in a Docker container, eliminating the need for any dependencies in your host developer environment, using the following command: ``` make build ``` The binary will be put in `./dist/` and named `calicoctl--`, e.g.: ``` $ ls -1 ./dist/ calicoctl-linux-amd64 calicoctl-linux-arm64 calicoctl-linux-ppc64le calicoctl-linux-s390x calicoctl-darwin-amd64 calicoctl-windows-amd64.exe ``` To build for a different OS or ARCH, simply define it as a var to `make`, e.g.: ``` $ make build ARCH=arm64 $ make build OS=darwin ARCH=amd64 ``` To list all possible targets, run `make help`. ## Tests Tests can be run in a container to ensure all build dependencies are met. To run the tests ``` make test ``` **Note:** Tests depend on the test image `calico/test`, which is available only on `amd64`. The actual image used as set by the make variable `TEST_CONTAINER_NAME`. If you have a local build of that image or one for a different architecture, you can override it by setting the variable, e.g.: ``` $ make test TEST_CONTAINER_NAME=some/container:tag ```