Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 544 Bytes

developer-guide.md

File metadata and controls

30 lines (23 loc) · 544 Bytes

Developer Guide

There's a Makefile in the root folder. Here are some common options:

Build KubeZoo binary kube-zoo

make build

Build for specific architecture. (amd64,arm,arm64)

GOOS=linux GOARCH=arm64 make build

Build all docker images for all supported architectures.

make release

Build all docker images for specific architecture.

make release ARCH=arm64

Build kubezoo-e2e-test binary to test KubeZoo.

make e2e

Debug KubeZoo locally