This MR contains the following updates:
Package | Update | Change | OpenSSF |
---|---|---|---|
tektoncd/triggers | minor |
v0.31.0 -> v0.32.0
|
Warning Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
v0.32.0
: Tekton Triggers release v0.32.0 "Tekton Triggers"-Docs @ v0.32.0 -Examples @ v0.32.0
kubectl apply -f https://storage.googleapis.com/tekton-releases/triggers/previous/v0.32.0/release.yaml
kubectl apply -f https://storage.googleapis.com/tekton-releases/triggers/previous/v0.32.0/interceptors.yaml
The Rekor UUID for this release is 108e9186e8c5677ab3a0005892bb67e811a79dfb38afdde7453855993480ace29e0146b4bbbc6662
Obtain the attestation:
REKOR_UUID=108e9186e8c5677ab3a0005892bb67e811a79dfb38afdde7453855993480ace29e0146b4bbbc6662
rekor-cli get --uuid $REKOR_UUID --format json | jq -r .Attestation | jq .
Verify that all container images in the attestation are in the release file:
RELEASE_FILE=https://storage.googleapis.com/tekton-releases/triggers/previous/v0.32.0/release.yaml
REKOR_UUID=108e9186e8c5677ab3a0005892bb67e811a79dfb38afdde7453855993480ace29e0146b4bbbc6662
### Obtains the list of images with sha from the attestation
REKOR_ATTESTATION_IMAGES=$(rekor-cli get --uuid "$REKOR_UUID" --format json | jq -r .Attestation | jq -r '.subject[]|.name + ":
v0.32.0@​sha256:" + .digest.sha256')
### Download the release file
curl "$RELEASE_FILE" > release.yaml
### For each image in the attestation, match it to the release file
for image in $REKOR_ATTESTATION_IMAGES; do
printf $image; grep -q $image release.yaml && echo " ===> ok" || echo " ===> no match";
done
Add KUBERNETES_MIN_VERSION env to override k8s variable. Currently, it is set 1.28 by default.
spec:
serviceAccountName: tekton-triggers-example-sa
resources:
kubernetesResource:
spec:
template:
spec:
securityContext:
runAsNonRoot: true
containers:
- resources:
requests:
memory: "64Mi"
cpu: "250m"
limits:
memory: "128Mi"
cpu: "500m"
securityContext:
readOnlyRootFilesystem: true
Thanks to these contributors who contributed to v0.32.0!
Extra shout-out for awesome release notes:
This MR has been generated by Renovate Bot. The local configuration can be found in the SI Renovate Bot repository.