|
13 | 13 | * Tekton `tkn` CLI 0.13.1 |
14 | 14 | * Tekton Triggers 0.8.1 |
15 | 15 | * ClusterTasks based on Tekton Catalog 0.16 |
| 16 | +* IBM Power Systems on {product-title} 4.6 |
| 17 | +* IBM Z and LinuxONE on {product-title} 4.6 |
| 18 | + |
| 19 | +[NOTE] |
| 20 | +==== |
| 21 | +Currently you must use the `preview` channel to install {pipelines-title} on IBM Power Systems, IBM Z, and LinuxONE. |
| 22 | +==== |
16 | 23 |
|
17 | 24 | In addition to the fixes and stability improvements, here is a highlight of what’s new in OpenShift Pipelines 1.2. |
18 | 25 |
|
19 | 26 | === Pipelines |
20 | 27 |
|
21 | 28 | * This release of {pipelines-title} adds support for a disconnected installation. |
22 | | -//* The `PodSecurityPolicy` configuration was changed to enable {pipelines-title} in a restricted environment by running the tekton pipelines controller and tekton pipelines webhook as non-root users. |
23 | | -//needs confirmation from Gabe if this needs to be added. |
| 29 | + |
| 30 | ++ |
| 31 | +[NOTE] |
| 32 | +==== |
| 33 | +Installations in restricted environments are currently not supported on IBM Power Systems, IBM Z, and LinuxONE. |
| 34 | +==== |
| 35 | + |
24 | 36 | * You can now use the `when` field, instead of `conditions`, to run a task only when certain criteria are met. The key components of `WhenExpressions` are `Input`, `Operator`, and `Values`. If all the `WhenExpressions` evaluate to `True`, then the task is run. If any of the `WhenExpressions` evaluate to `False`, the task is skipped. |
25 | 37 | * Step statuses are now updated if a task run is canceled or times out. |
26 | 38 | * Support for Git Large File Storage (LFS) is now available to build the base image used by `git-init`. |
@@ -94,6 +106,21 @@ oc patch el/github-listener-interceptor -p '{"metadata":{"finalizers":["foregrou |
94 | 106 | oc patch crd/eventlisteners.triggers.tekton.dev -p '{"metadata":{"finalizers":[]}}' --type=merge |
95 | 107 | ---- |
96 | 108 |
|
| 109 | +* When you run a multi-arch container image task without command specification on an IBM Power Systems (ppc64le) or IBM Z (s390x) cluster, the `TaskRun` resource fails with the following error: |
| 110 | ++ |
| 111 | +[source,terminal] |
| 112 | +---- |
| 113 | +Error executing command: fork/exec /bin/bash: exec format error |
| 114 | +---- |
| 115 | ++ |
| 116 | +As a workaround, use an architecture specific container image or specify the sha256 digest to point to the correct architecture. |
| 117 | +To get the sha256 digest enter: |
| 118 | ++ |
| 119 | +[source,terminal] |
| 120 | +---- |
| 121 | +$ skopeo inspect --raw <image_name>| jq '.manifests[] | select(.platform.architecture == "<architecture>") | .digest' |
| 122 | +---- |
| 123 | + |
97 | 124 | [id="fixed-issues-1-2_{context}"] |
98 | 125 | == Fixed issues |
99 | 126 |
|
|
0 commit comments