kubernetes-sigs/kustomize

arm64 build support

brendarearden opened this issue · 8 comments

Now that Helm 3 supports a --post-renderer flag to be set, making kustomize even easier to integrate with, is it possible to get arm64 builds? I am currently unable to use it reliably because an arm64 binary is not offered.

Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale.
Stale issues rot after an additional 30d of inactivity and eventually close.

If this issue is safe to close now please do so with /close.

Send feedback to sig-testing, kubernetes/test-infra and/or fejta.
/lifecycle stale

/remove-lifecycle stale

Hi,

We are working on contour which has a dependency on this package, So we would like to know when will arm64 build will be available.

you can use kubectl kustomize from kubectl 1.14
source: https://kubernetes.io/docs/tasks/manage-kubernetes-objects/kustomization/

@tnxgalaxy I am attempting to use this with helm as a post renderer, so I would need the binary available, is there a way to point to the binary that is included with kubectl?

@brendarearden you could try writing a small wrapper script, a script you could name kustomize and that would itself call kubectl kustomize with the parameters it's given, the content could look like this:

#!/usr/bin/env bash
/path/to/kubectl kustomize $@

Please let me know if that does the job.

/assign

ARM builds will be available in next release.