Skip to content

Tekton Pipelines Beta release v0.11.0 "Ragdoll Norby"

Compare
Choose a tag to compare
@afrittoli afrittoli released this 31 Mar 15:53

πŸŽ‰ Tekton Pipelines Beta πŸŽ‰

This release is the first official Tekton Pipelines Beta.

If you've been following along with prior release candidates there have been no code changes since yesterday's release of RC4. The only noticeable change is that applying the latest version of Tekton to your clusters will now yield a controller with version label of "v0.11.0" instead of "v0.11.0-rc4".

Installation one-liner:

kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.11.0/release.yaml

Upgrade Notices

🚨 The minimum version of Kubernetes required to run Tekton Pipelines is now 1.15.

🚨 If you are upgrading from an older version of Tekton Pipelines you may need to delete your existing tekton-pipeline deployments before applying v0.11.0.

🚨 Submitting the same v1alpha1 Tasks more than once results in errors. Use kubectl replace instead of kubectl apply.

Deprecation Notices

  • 🚨 PipelineResources are not moving to Beta with Tekton's other types

    We do not plan to promote PipelineResources into Beta. They will continue to work as part of Beta but their use is discouraged when possible. We are progressively adding documentation and Catalog Tasks to help users migrate away from them:

    • The git-clone Task in the catalog performs the same work as the Git PipelineResource.
    • The pullrequest Task in the catalog performs the same work as the PullRequest PipelineResource.
    • Workspaces are intended for sharing files between Tasks.
  • 🚨 The $HOME env var and workingDir of Steps will change in the next release (#2044)

    Tekton currently overwrites the HOME environment variable in a Step's container to always be /tekton/home and the workingDir field of the Step's image to always be /workspace. This behaviour will change in the next release: those two fields will be left untouched by Tekton, using whatever settings are defined in the container image and Task's YAML. We have introduced a new ConfigMap, named feature-flags, that allows you to use this new behaviour now:

    • disable-home-env-overwrite: When this flag is set to "true" Tekton will allow a Step's image to dictate its own $HOME directory.
    • disable-working-directory-overwrite: When this flag is set to "true" Tekton will allow a Step's image to dictate its own workingDir.

    In the next release we plan to flip these flags so that they are opt-out rather than opt-in. At some point in the future we plan to remove support for this overwriting behaviour entirely.

Changes

Below is the complete list of changes that have been added to Tekton Pipelines across all of the Beta Release Candidates.

Features

  • ✨ Introduce the v1beta1 API Version (#2035)
  • ✨ Improved LimitRange support (#2020)
  • ✨ Pipeline Resources can now be marked as optional (#1910)
  • ✨ Data can now be shared between Tasks using Task Results and Task Params (#1921)
  • ✨ Tekton Pipelines can be configured to no longer overwrite the HOME environment variable and workingDir of Steps (#2044)
  • ✨ Sidecars now support Script mode, just like in Task Steps (#1987)
  • ✨ TaskRuns can now specify a different Scheduler Name in their podTemplate (#1790)
  • ✨ JSONPath-like Star Array Notation can now be used in variable substitutions (#2085)
  • ✨ The Tekton Controller can now be configured to monitor an individual namespace (#2144)
  • ✨ Add description field to Spec (#2089)
  • ✨ Add proxy parameters to Git PipelineResources (#2215)

Fixes

  • πŸ› Fix redundant type conversion (#2142)
  • πŸ› Fail step-script if param value is not applied (#1934)
  • πŸ› Fix params-applied example (#1925)
  • πŸ› Make pipelinerun as "cancelled" when taskrun is "cancelled" (#1935)
  • πŸ› Fix release yaml for openshift install (#1959)
  • πŸ› Remove Code Comment From v1alpha2 taskrun_types_test.go (#1967)
  • πŸ› Correct message of Pipelinerun when timeout (#2024)
  • πŸ› Enhance reconcile of taskrun to avoid extra pod creation (#2022)
  • πŸ› Add random suffix when make volumn from secret (#2048)
  • πŸ› Validate PipelineTask name as Task names (#2099)
  • πŸ› Fixes Steps container spec serialization/deserialization (#2151)
  • πŸ› Remove result initcontainer (#2175)
  • πŸ› SetDefaults for embedded specs (Pipeline, Task) πŸ₯„ (#2162)
  • πŸ› Fix to FieldError fields name for duplicate param names and associated unit tests (#2195)
  • πŸ› Fixes Task workspaces marshalling (#2200)
  • πŸ› Handle the case of multiple versions of a status (#2194)
  • πŸ› Panic in controller when step fails before image digest exporter (#2222)
  • πŸ› Fix copying description also during upgrade (#2247)
  • πŸ› Add checking for duplicate declared resources (#2266)
  • πŸ› Fix re-applying v1beta1 TaskRun failing (#2285)
  • πŸ› Fix the variable substitution for task results inside array parameters (#2300)
  • πŸ› Add missing omitempty that breaks compatibility (#2301)
  • πŸ› Correct missing field(s) error (#2295)

Misc

  • πŸ”¨ Update dind example to connect to daemon using TCP+TLS (#1932)
  • πŸ”¨ Add tekton.dev/release annotation to the webhook (#1942)
  • πŸ”¨ Use named field in test tables taco (#1954)
  • πŸ”¨ Add e2e test to cover TaskRun retries (#1975)
  • πŸ”¨ Increase timeout for e2e test_retry test (#1985)
  • πŸ”¨ Prepend tekton-bucket resource name with pipeline pill (#1982)
  • πŸ”¨ Remove messages about kodata in task logs (#2000)
  • πŸ”¨ Correct the number of expected pods created in e2e test case of "retry" (#1996)
  • πŸ”¨ Remove deprecated fields from PipelineResourceResult sweet_potato (#2011)
  • πŸ”¨ Make testcase of "retry" raise error rather than just log (#2033)
  • πŸ”¨ update cloudevents dependency and clean up deps (#2014)
  • πŸ”¨ Add symlink in kodata link (#2032)
  • πŸ”¨ Add a description field to pipeline workspace declarations (#2054)
  • πŸ”¨ Add jsonpath expand library (#1951)
  • πŸ”¨ Use vendor folder to speed up CI spoon (#2040)
  • πŸ”¨ Adding a version label to controller and webhook (#2064)
  • πŸ”¨ Refining status when Condition failed (#1696)
  • πŸ”¨ Add ContainerState and ContainerName for Sidecars (#2075)
  • πŸ”¨ Move Resources implementation to their package (#2103)
  • πŸ”¨ Update the kaniko executor image version to 0.17.1 (#2136)
  • πŸ”¨ Invalid Sink URI CloudEvent test sometimes includes quotes (#2166)
  • πŸ”¨ Add builder for resource description (#2224)
  • πŸ”¨ Creds-init writes to fixed location when HOME override is disabled (#2180)
  • πŸ”¨ Introduce v1beta1 e2e go tests (#2252)
  • πŸ”¨ Add the git resource ref to the ResourceResult for git resources. (#2238)
  • πŸ”¨ fix skipRootUserTests flag 🎏 (#2304)

Docs

  • πŸ“– Adding Documentation on PipelineTask Timeout (#2130)
  • πŸ“– Fix Install Guide formatting. (#2149)
  • πŸ“– Rewrite the Tekton Pipelines overview for clarity and flow (#2030)
  • πŸ“– Document default-managed-by-label (#1964)
  • πŸ“– fix wrong default pod template example (#1997)
  • πŸ“– Updating to include Tekton installtion (#2012)
  • πŸ“– Linking to conditions-doc insteadof self (#2046)
  • πŸ“– Indicate minimum cluster version is now 1.15 police_car (#2052)
  • πŸ“– Add authority for resource deployments.apps to tutorial-role (#2034)
  • πŸ“– Correct the wrong MD format for document: podTemplates (#2090)
  • πŸ“– Fix Broken Link and Typo for LimitRange Docs (#2108)
  • πŸ“– Installation: Added example for GoogleCloudStorage backend (#2123)
  • πŸ“– Rewrite Install Guide for clarity and flow. (#2146)
  • πŸ“– Fix Install Guide formatting. (#2149)
  • πŸ“– Rewrite the Pipelines tutorial for clarity and flow. (#2068)
  • πŸ“– Update some more example links and move task results example (#2148)
  • πŸ“– Document Task Results maximum size (#2167)
  • πŸ“– Update install instructions on OpenShift (#2169)
  • πŸ“– Add params section to Pipelinerun doc (#2173)
  • πŸ“– Fix pipeline spelling bug in developers/readme.md (#2184)
  • πŸ“– Update docs to use v1beta1
  • πŸ“– Remove MiniShift from install documentation (#2189)
  • πŸ“– Fix broken markdown links in our doc (#2205)
  • πŸ“– Spelling fixes in our doc (#2206)
  • πŸ“– Add a Workspaces doc (#2230)
  • πŸ“– Improve the clarity and flow in Workspaces documentation. (#2256)
  • πŸ“– Fix unavailable link in document (#2271)
  • πŸ“– Adds "commented" website front matter to docs (#2283)

Thanks

Thanks to all those who have contributed to the Beta!