To build the cdk-addons snap, run make here and check for the results in the current directory.
$ make
$ ls *.snap
cdk-addons_1.6.2_amd64.snapBy default, the latest stable version of Kubernetes is queried. To override this,
set the KUBE_VERSION variable. The dashboard included by default is v1.6.3
and you can override this via the KUBE_DASHBOARD_VERSION variable when calling make:
$ make KUBE_VERSION=v1.7.1 KUBE_DASHBOARD_VERSION=v1.6.2Make sure to include the v prefix when overriding versions.
The amd64 architecture is built by default. To select a different architecture,
set the KUBE_ARCH variable when calling make:
$ make KUBE_ARCH=arm64To build inside a docker container, use:
$ make dockerand similarly:
$ make KUBE_VERSION=v1.6.1 KUBE_ARCH=ppc64le docker