Jason Hall
Jason Hall
This looks super cool! I've been tinkering with a similar NextJS frontend for browsing images at https://registry-ui.chainguard.app/?image=cgr.dev/chainguard/static, and @jonjohnsonjr has been making https://explore.ggcr.dev/ -- registry-ui is more focused on linking...
> 1. How are you planning to distinguish images from different registries? For example golang:1.19 exists in ECR and docker hub and the digest would most likely be the same...
The issue that @SaschaSchwarze0 mentioned in the grooming meeting today seems like a documentation issue. https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ mentions a couple ways to generate a Docker config Secret: 1. `docker-registry` and `--docker-username`,...
Some glue code to help out users who did (1) or the original (2) could be useful, with a warning to users that they should migrate to the variation of...
I'd love to do this. I've experimented quite a while back at https://github.com/ImJasonH/shipwright-cosign-example If you're interested in proposing a SHIP proposal to make this work I'd be happy to help...
This was discussed in the community meeting today, I'll summarize a bit here: 1. Being built on Tekton, and being able to take advantage of Tekton Chains' built-in signing/attestation, is...
Hey, sorry for the delay in responding to this. If the question is whether Shipwright can run builds on Windows nodes, the answer is not yet. For that we'll need...
How have we determined this list? ``` $ go mod why github.com/bmizerany/assert # github.com/bmizerany/assert (main module does not need package github.com/bmizerany/assert) ``` And another randomly selected example: ``` $ go...
Weird. I think `go.sum` keeps tabs on all possible versions of dependencies, and all their possible versions that might satisfy the constraints, even if you don't actually depend on those...
@sbose78 asked for my input on this. This certainly seems _possible_ to do with Custom Tasks, but I think I need to understand Shipwright a bit better to understand how...