Daniel Chen

Results 33 comments of Daniel Chen

We don't have any plans to work on this atm, but will welcome and PRs for the changes on both the controller and CLI side

What does your resource definition looks like? The example pipeline will not work as is since it doesn't set the `content_trust` field which is required to [sign the image](https://github.com/concourse/registry-image-resource#signing-with-docker-hub)

You should be able to generate new private keys by running `docker trust key generate` according to https://docs.docker.com/engine/security/trust/#signing-images-with-docker-content-trust

Hey, sorry for the late response. I don't think this PR can be accepted in the current form, the reasoning is the same as the one in https://github.com/concourse/concourse/issues/3023 and Aidan's...

The images are built and released using [GHA](https://github.com/buildpacks-community/kpack/blob/main/.github/workflows/ci.yaml). We first build dev images on every push to `main` and run tests using these images. If they pass acceptance, and we...

I'm not sure why you would use the `Image` resource then, for one-off builds you should use the [`Build` resource](https://github.com/buildpacks-community/kpack/blob/main/docs/build.md) directly.

@xtreme-shane-lattanzio I would have the `NewVolumeSecretKeychain` return a struct that implements the `authn.Keychain` interface, and so every time `Resolve` is called, it can compare last modified time against its internal...

The CNB spec says that `/cnb/lifecycle/builder` [exits with code 51 if there's a Buildpack build error](https://github.com/buildpacks/spec/blob/main/platform.md#builder). What buildpacks are you using (i.e. what does the `DETECT` phase print out)? The...

Just for sanity's sake: 1. The project `test` exists in harbor? In your example the Builder is pushing to `builder` project but the Image is pushing to `test` 2. Is...

This is something we've been meaning to do for a while now and a lot of the work is already in a PR at https://github.com/buildpacks-community/kpack/pull/1332. But I'm not sure if...