Jason Hall

Results 522 comments of Jason Hall

Can you share the invalid tar file, and the valid one produced by skopeo copying? Diffing them may help uncover what the problem is.

This change looks pretty good to me. I think we should also support it as a flag in `ko build` (flag name ideas welcome!)

We can't do this until https://github.com/ko-build/ko/issues/1025

Sorry for not responding earlier. I'm not opposed to this in general, but I'd like to understand a bit more what requirements are driving it. Is the problem that a...

I want to be clear that I'm not saying `ko` shouldn't support this. So there seem to be workarounds to this that (IMO) simplify the deployment config, since it removes...

Just an update: most of the items remaining are waiting on the outcome of ko's proposal as a CNCF sandbox project, and making myself and any other potential non-Google contributors...

Thanks @BenTheElder that does indeed seem like a gap. 🙃 @mchmarny Did you open a Sandbox application through the sandbox repo after toc#945 was closed? I'll start one now and...

Just an update: https://github.com/imjasonh/setup-ko has moved to the `ko-build` org. The last two remaining items at this point are to move the terraform provider, and to update the importpath. I...

Ooh, nice. This would be useful for folks who aren't using the Kubernetes integration, to just build a whole repo's worth of images. I wonder if we should just accept...

You can use `go list -json` to discover packages, and `jq` to filter those for packages that are `package main`. ``` $ go list -json ./... | jq -r -s...