No description, website, or topics provided.
Python Makefile
Latest commit aecd52d Dec 19, 2017 @wwwtyro wwwtyro Merge pull request #25 from juju-solutions/gkk/dashboard-1.8.1
Use dashboard 1.8.1
Permalink
Failed to load latest commit information.
cdk-addons
.gitignore
Dockerfile
Makefile
README.md
cdk-addons.yaml
get-addon-templates

README.md

Canonical Distribution of Kubernetes Addons Snap

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.snap

By 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 varibale when calling make:

$ make KUBE_VERSION=v1.7.1 KUBE_DASHBOARD_VERSION=v1.6.2

Make 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=arm64

To build inside a docker container, use:

$ make docker

and similarly:

$ make KUBE_VERSION=v1.6.1 KUBE_ARCH=ppc64le docker