Tekton Dashboard v0.63.0 LTS
This Dashboard release supports Pipelines v1.6.x LTS and Triggers v0.33.x LTS.
Attestation
The Rekor UUID for this release is 108e9186e8c5677a4a2a1d45820d0aeaedbc2bd77d06337d0e0231de8f7412e68613c97cff026d3a
Verify that all container images in the release file are in the attestation:
RELEASE_FILE=https://infra.tekton.dev/tekton-releases/dashboard/previous/v0.63.0/release.yaml
REKOR_UUID=108e9186e8c5677a4a2a1d45820d0aeaedbc2bd77d06337d0e0231de8f7412e68613c97cff026d3a
# Obtains the list of images with sha from the attestation
REKOR_ATTESTATION_IMAGE=$(rekor-cli get --uuid "$REKOR_UUID" --format json | jq -r .Attestation | jq -r '.subject[]|select(.name | startswith("ghcr.io"))|.name + ":v0.63.0@sha256:" + .digest.sha256')
# Download the release file
curl -s -L "$RELEASE_FILE" -o release.yaml
# Match the image used in the release file to an image in the attestation
DASHBOARD_IMAGE=$(cat release.yaml | grep image: | awk -F' ' '{print $2}')
echo
printf $DASHBOARD_IMAGE
if [[ "${REKOR_ATTESTATION_IMAGE}" = "${DASHBOARD_IMAGE}" ]]; then
echo " ===> ok"
else
echo " ===> no match"
fi
Features
- โจ Add support for trace log level in the log viewer https://github.com/tektoncd/dashboard/pull/4521