Tekton Operator release v0.75.0 "Buff-sided robin"
·
0 commits
to 9451194655d50f56c2e6f5bc8a711cdebdb86604
since this release
-Docs @ v0.75.0
-Examples @ v0.75.0
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.75.0/release.yaml
Attestation
The Rekor UUID for this release is ``
Obtain the attestation:
REKOR_UUID=
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/operator/previous/v0.75.0/release.yaml
REKOR_UUID=
# 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.75.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
Changes
Component | Org | Version |
---|---|---|
Chains | tektoncd | v0.24.0 |
Dashboard | tektoncd | v0.54.0 |
Hub | tektoncd | v1.20.0 |
Manual Approval Gate | openshift-pipelines | v0.5.0 |
Pipeline | tektoncd | v0.68.0 |
Pipeline-as-code | openshift-pipelines | v0.33.0 |
Results | tektoncd | v0.14.0 |
Triggers | tektoncd | v0.31.0 |
What's Changed
- update charts on main with devel version by @jkhelil in #2419
- add version 0.74.0 to supported version on the readme by @jkhelil in #2420
- Bump github.com/tektoncd/pipeline from 0.65.1 to 0.65.2 by @dependabot in #2422
- Bump k8s.io/apiextensions-apiserver from 0.29.10 to 0.29.11 by @dependabot in #2423
- Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 by @dependabot in #2424
- Updates go.mod by executing update-codegen script by @PuneetPunamiya in #2425
- Update base image from rhel8/ubi8 to rhel9/ubi9 by @savitaashture in #2426
- [bot] bump payload versions by @github-actions in #2428
- fix namespace reconciliation error during openshift rbac reconciliation by @anithapriyanatarajan in #2432
- Remove older versions of task and stepactions resolver installersets by @pratap0007 in #2430
- [bot] bump payload versions by @github-actions in #2435
- [bot] bump payload versions by @github-actions in #2440
- enable fips compliance on openshift operator by @jkhelil in #2429
- [bot] bump payload versions by @github-actions in #2443
- [bot] bump payload versions by @github-actions in #2446
- Bump golang.org/x/sync from 0.9.0 to 0.10.0 by @dependabot in #2449
- [bot] bump payload versions by @github-actions in #2452
- Bump github.com/tektoncd/pipeline from 0.65.2 to 0.66.0 by @dependabot in #2448
- Adds runtimeclassname support in
options
field for deployment and statefulsets by @PuneetPunamiya in #2441 - Upgrade golang.org/x/crypto to 0.31.0 by @vdemeester in #2454
- Bump k8s.io/apiextensions-apiserver from 0.29.11 to 0.29.12 by @dependabot in #2457
- update pruner sha with latest by @jkhelil in #2460
- [bot] bump payload versions by @github-actions in #2463
- Update the release to use ghcr.io by @afrittoli in #2462
- Update DEVELOPMENT.md by @clintonsteiner in #2465
- Fix wrong shell in release task by @afrittoli in #2466
- Fix nightly failures by @afrittoli in #2475
- [bot] bump payload versions by @github-actions in #2477
- Update ecosystem task version to fix buildah issue by @savitaashture in #2480
- Update TektonConfig CR's addon params to remove cluster tasks params by @pratap0007 in #2439
- Bump github.com/tektoncd/triggers from 0.30.0 to 0.30.1 by @dependabot in #2483
- fix: avoid panic when upgrading pipeline in tektonconfig by @l-qing in #2482
- Switch to golangci-lint GH action by @afrittoli in #2493
- Fix ghcr.io auth in release by @afrittoli in #2491
- Fix serviceaccount path by @afrittoli in #2497
- fix: resolve panic issue in script when label is specified during bundle build by @l-qing in #2494
- Bump golang.org/x/net from 0.28.0 to 0.33.0 by @dependabot in #2496
- [bot] bump payload versions by @github-actions in #2485
- Update golang.org/x/net to 0.33.0 by @vdemeester in #2469
- refactor namespace reconciliation to ensure openshift rbac requisites by @anithapriyanatarajan in #2468
- [bot] bump payload versions by @github-actions in #2513
- fix: get tektonconfig version from label by @l-qing in #2518
- Bump helm/chart-releaser-action from 1.6.0 to 1.7.0 by @dependabot in #2519
- fix: avoid panic when reconciling namespace without owner reference by @l-qing in #2516
- fix(e2e): resolve instability issues in end-to-end tests by @l-qing in #2517
- Bump golangci/golangci-lint-action from 6.1.1 to 6.2.0 by @dependabot in #2520
- Bump k8s.io/apiextensions-apiserver from 0.29.12 to 0.29.13 by @dependabot in #2521
- [bot] bump payload versions by @github-actions in #2524
- [bot] bump payload versions by @github-actions in #2527
- move chart images to ghcr.io by @jkhelil in #2533
- restore community tasks as openshift addons by @jkhelil in #2427
- [bot] bump payload versions by @github-actions in #2546
- restore pruner sha with ghcr.io by @jkhelil in #2537
- Ensure the configured
TargetNamespace
overrides the default namespace in the Dashboard's container args by @aThorp96 in #2542 - Fix fetch-component-release task in nightly release by @AlanGreene in #2547
- Bump github.com/tektoncd/pipeline from 0.66.0 to 0.68.0 by @dependabot in #2550
- Add tekton-caches stepActions into operator catalog by @pramodbindal in #2551
- add trigger creation as prerequisite to dashboard e2e to ensure tekto… by @jkhelil in #2555
- Add Results configuration in tekton config by @pratap0007 in #2398
- update config yaml with new image pac cli and sidecarlogresults pipeline info by @savitaashture in #2565
- Update images of registry.redhat.io by @savitaashture in #2566
- Bump gotest.tools/v3 from 3.5.1 to 3.5.2 by @dependabot in #2559
- Bump github.com/sigstore/cosign/v2 from 2.4.1 to 2.4.2 by @dependabot in #2561
- Bump golangci/golangci-lint-action from 6.2.0 to 6.3.2 by @dependabot in #2564
- Bump golang.org/x/sync from 0.10.0 to 0.11.0 by @dependabot in #2560
- Bump github.com/tektoncd/triggers from 0.30.1 to 0.31.0 by @dependabot in #2562
- Support addition of new containers provided as options by @enarha in #2557
- [bot] bump payload versions by @github-actions in #2568
- Add proxy in the ConsolePlugin by @pratap0007 in #2545
- [bot] bump payload versions by @github-actions in #2569
- Bump golang.org/x/mod from 0.22.0 to 0.23.0 by @dependabot in #2563
- Update task-containers version from 0.5.1 to 0.6.0 by @savitaashture in #2572
- Fix image pull error due to missing sha256 by @mbpavan in #2570
- [bot] bump payload versions by @github-actions in #2583
- Fix golangci by @jkhelil in #2581
- Update tekton-cache stepAction release versions by @pramodbindal in #2573
- Bump k8s.io/apiextensions-apiserver from 0.29.13 to 0.29.14 by @dependabot in #2590
- Bump github.com/spf13/cobra from 1.8.1 to 1.9.1 by @dependabot in #2591
- docs: correct hyperlink error in results component documentation by @l-qing in #2595
- [release-v0.75.x] bump chart version to v0.75.0 by @jkhelil in #2597
- [release-v0.75.x] Preserve the existing TektonResult CR configuration by @tekton-robot in #2612
- [release-v0.75.x] Update operatorhub manifests by @jkhelil in #2601
- fix image repositories for helm chart by @jkhelil in #2614
New Contributors
- @clintonsteiner made their first contribution in #2465
- @aThorp96 made their first contribution in #2542
- @pramodbindal made their first contribution in #2551
Full Changelog: v0.74.0...v0.75.0
Thanks
Thanks to these contributors who contributed to v0.75.0!
- ❤️ @AlanGreene
- ❤️ @PuneetPunamiya
- ❤️ @aThorp96
- ❤️ @anithapriyanatarajan
- ❤️ @clintonsteiner
- ❤️ @dependabot[bot]
- ❤️ @enarha
- ❤️ @jkhelil
- ❤️ @l-qing
- ❤️ @mbpavan
- ❤️ @pramodbindal
- ❤️ @pratap0007
- ❤️ @savitaashture
- ❤️ @vdemeester
Extra shout-out for awesome release notes:
- 😍 @AlanGreene
- 😍 @PuneetPunamiya
- 😍 @aThorp96
- 😍 @clintonsteiner
- 😍 @enarha
- 😍 @jkhelil
- 😍 @l-qing
- 😍 @mbpavan
- 😍 @pramodbindal
- 😍 @pratap0007
- 😍 @savitaashture
- 😍 @vdemeester