Nightly builds of Kubernetes Helm's tiller
service as a multiarch
Docker image. Using the Docker Image Manifest V2 API, we're able to
support the three most common architectures with a single image:
- amd64 (most PCs / cloud providers)
- 64-bit ARM (stylized as either
arm64
oraarch64
, although there are subtle differences) This includes the majority of modern SBCs, including:- Most Raspberry Pi boards,
- Pine64 Rock64 / RockPro64 / Pine64
- Hardkernel's Odroid C2
- Libre Computer's
roc-rk3328-cc
"Renegade"
- 32-bit ARM,
armhf
/armv7
/arm6l
(older Raspberry Pi boards, Odroid XU4)
As mentioned above, images are built compliant with v2.2 of the Docker manifest API. No need to specify separate images for different architectures (particularly annoying if you have an architecturally heterogeneous cluster); the Docker client infers for you which image to pull.
Creating the tiller
deployment with this image is as simple as running
helm init
and overriding the --tiller-image
flag, i.e.:
$ helm init --tiller-image=jessestuart/tiller
Note that depending on your version of Kubernetes and your RBAC configuration,
you'll likely need to create and specify a ServiceAccount
as well, e.g.:
$ kubectl apply -f manifests/tiller-rbac.yaml
$ helm init --tiller-image=jessestuart/tiller --service-account tiller