sigstore / scaffolding

Stuff to make standing up sigstore (esp. for testing) easier for e2e/integration testing.
Apache License 2.0
57 stars 56 forks source link

Add ability to install specific versions of Fulcio, Rekor, etc. #462

Open vaikas opened 1 year ago

vaikas commented 1 year ago

Description

It would be nice to be able to specify which release version of the components should be stood up, for example: https://github.com/sigstore/cosign/pull/2402#issuecomment-1301150996

It would be nice to be able to specify which (for example, Rekor), say 1.0.0 or 1.0.x that should get installed. Couple of things off the top of my head is to grab the releases from GitHub and then parse, like is done here (so supports, latest, 1.0.0, and 1.0.x: https://github.com/chainguard-dev/actions/blob/main/setup-knative/action.yaml#L82

So, that's cool, it gives us the version for the release we're looking for, but then we need to go through and actually pull out the released container image. I'm not sure where else this is kept right now except in things like: https://github.com/sigstore/rekor/releases/download/v1.0.0/rekor-v1.0.0.yaml

where we'd then pull the image from. Is there a release artifact that we would have the container image we could get in an easier manner? @cpanato thoughts?

And lastly, once we get the container image, we'd need to kustomize (or something else) and replace the various ./config files with the correct container images. Like here: https://github.com/sigstore/scaffolding/blob/main/config/rekor/rekor/300-rekor.yaml#L22

cpanato commented 1 year ago

i like the idea, will be good as well to test different combinations.

Lets start working on this :)