You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* With this update, you can also modify {pac} configurations in the `TektonConfig` CRD.
83
88
@@ -246,7 +251,10 @@ If you do not add any configuration data, you can use the default data in the AP
246
251
247
252
* With this update, support for `tekton.dev/v1alpha1` API pipeline resources, such as Pipeline, PipelineRun, Task, Clustertask, and TaskRun has been removed.
248
253
249
-
* With this update, the `tkn-pac setup` command has been removed. You can now re-use the functionality provided by the `tkn-pac setup` command by using the `tkn-pac webhook add` and `tkn-pac webhook update-token` commands. You can use the `tkn-pac webhook add` command to re-add a webhook to an existing Git repository. You can use the `tkn-pac webhook update-token` command to update the personal provider access token for an existing Secret object in the Git repository.
254
+
* With this update, the `tkn-pac setup` command has been removed. Instead, use the `tkn-pac webhook add` command to re-add a webhook to an existing Git repository. And use the `tkn-pac webhook update-token` command to update the personal provider access token for an existing Secret object in the Git repository.
255
+
256
+
* With this update, a namespace that runs a pipeline with default settings does not apply the `pod-security.kubernetes.io/enforce:privileged` label to a workload.
257
+
250
258
251
259
[id="deprecated-features-1-9_{context}"]
252
260
== Deprecated and removed features
@@ -279,7 +287,7 @@ Workaround: Set the `NO_COLOR` environment variable to `true`.
279
287
280
288
* Running the `tkn pac resolve -f <filename> | oc create -f` command may not provide expected results, if the `tkn pac resolve` command uses a templated parameter value to function.
281
289
+
282
-
Workaround: To mitigate this issue, save the output of `tkn pac resolve` in a temporary file by running the `tkn pac resolve -f <filename> -o tempfile.yaml` command and then run the `oc create -f tempfile.yaml` command. For example, `tkn pac resolve -f <filename> -o /tmp/pull-request-resolved.yaml && kubectl create -f /tmp/pull-request-resolved.yaml`.
290
+
Workaround: To mitigate this issue, save the output of `tkn pac resolve` in a temporary file by running the `tkn pac resolve -f <filename> -o tempfile.yaml` command and then run the `oc create -f tempfile.yaml` command. For example, `tkn pac resolve -f <filename> -o /tmp/pull-request-resolved.yaml && oc create -f /tmp/pull-request-resolved.yaml`.
283
291
284
292
[id="fixed-issues-1-9_{context}"]
285
293
== Fixed issues
@@ -292,11 +300,24 @@ Workaround: To mitigate this issue, save the output of `tkn pac resolve` in a te
292
300
* Before this update, if duplicate secrets were present in a service account for a pipelines run, it resulted in failure in task pod creation. With this update, this issue is resolved and the task pod is created successfully even if duplicate secrets are present in a service account.
293
301
// Vincent Demeester
294
302
295
-
* Before this update, by looking at the TaskRun's `spec.StatusMessage` field, users could not distinguish whether the `TaskRun` had been cancelled by the user or by a `PipelineRun` that was part of it. With this update, this issue is resolved and users can distinguish the status of the `TaskRun` by looking at the TaskRun's `spec.StatusMessage` field.
303
+
* Before this update, by looking at the TaskRun's `spec.StatusMessage` field, users could not distinguish whether the `TaskRun` had been cancelled by the user or by a `PipelineRun` that was part of it. With this update, this issue is resolved and users can distinguish the status of the `TaskRun` by looking at the TaskRun's `spec.StatusMessage` field.
296
304
// Vincent Demeester
297
305
298
306
* Before this update, webhook validation was removed on deletion of old versions of invalid objects. With this update, this issue is resolved.
299
-
// Vincent Demeester @vdeemester
307
+
// Vincent Demeester @vdeemester
308
+
309
+
* Before this update, if you set the `timeouts.pipeline` parameter to `0`, you could not set the `timeouts.tasks` parameter or the `timeouts.finally` parameters. This update resolves the issue. Now, when you set the `timeouts.pipeline` parameter value, you can set the value of either the`timeouts.tasks` parameter or the `timeouts.finally` parameter. For example:
310
+
+
311
+
[source,yaml]
312
+
----
313
+
yaml
314
+
kind: PipelineRun
315
+
spec:
316
+
timeouts:
317
+
pipeline: "0" # No timeout
318
+
tasks: "0h3m0s"
319
+
----
320
+
// Vincent Demeester @vdeemester
300
321
301
322
* Before this update, a race condition could occur if another tool updated labels or annotations on a PipelineRun or TaskRun. With this update, this issue is resolved and you can merge labels or annotations.
302
323
// Vincent Demeester @vdeemester
@@ -317,7 +338,7 @@ Workaround: To mitigate this issue, save the output of `tkn pac resolve` in a te
317
338
// https://github.com/tektoncd/cli/pull/1557
318
339
// Piyush Garg @piyush-garg
319
340
320
-
* Before this update, if the parent pipelinerun was running while deleting TaskRuns, then TaskRuns would be deleted. With this update, this issue is resolved and TaskRuns are not getting deleted if the parent PipelineRun is running.
341
+
* Before this update, if the parent PipelineRun was running while deleting TaskRuns, then TaskRuns would be deleted. With this update, this issue is resolved and TaskRuns are not getting deleted if the parent PipelineRun is running.
0 commit comments