From eaa8203d6bc66a5c4f1e96c468fde7acc9bd40f4 Mon Sep 17 00:00:00 2001 From: Misha Ramendik Date: Fri, 22 Mar 2024 21:58:22 +0000 Subject: [PATCH 1/2] RHDEVDOCS 5974 Release notes for Pipelines 1.13.2 --- modules/op-release-notes-1-13.adoc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/op-release-notes-1-13.adoc b/modules/op-release-notes-1-13.adoc index e256ff601a5b..d23fa374e8de 100644 --- a/modules/op-release-notes-1-13.adoc +++ b/modules/op-release-notes-1-13.adoc @@ -158,3 +158,13 @@ With this update, {pipelines-title} General Availability (GA) 1.13.1 is availabl * Before this update, the {pipelines-shortname} controller sometimes crashed when the task was evaluating parameters. With this update, the controller no longer crashes. * Before this update, if the final task in a pipeline run failed or was skipped, {pipelines-shortname} sometimes reported a validation error for the pipeline run. With this update, {pipelines-shortname} reports the status of the pipeline run correctly. + +[id="release-notes-1-13-2_{context}"] +== Release notes for {pipelines-title} General Availability 1.13.2 + +With this update, {pipelines-title} General Availability (GA) 1.13.2 is available on {OCP} 4.12 and later versions. + +[id="fixed-issues-1-13-2_{context}"] +=== Fixed issues + +* Before this update, if you used a custom namespace to install Tekton Hub, the installation deleted the `openshift-pipelines` namespace, removing the {pipelines-shortname} installation. With this update, you can use a custom namespace to install Tekton Hub and your {pipelines-shortname} installation is unaffected From 581714c5a32197713da3a779c8974b47db20dd28 Mon Sep 17 00:00:00 2001 From: Misha Ramendik Date: Mon, 25 Mar 2024 13:18:27 +0000 Subject: [PATCH 2/2] added chains controller settings --- modules/op-release-notes-1-13.adoc | 31 +++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/modules/op-release-notes-1-13.adoc b/modules/op-release-notes-1-13.adoc index d23fa374e8de..6eae74cbf14f 100644 --- a/modules/op-release-notes-1-13.adoc +++ b/modules/op-release-notes-1-13.adoc @@ -167,4 +167,33 @@ With this update, {pipelines-title} General Availability (GA) 1.13.2 is availabl [id="fixed-issues-1-13-2_{context}"] === Fixed issues -* Before this update, if you used a custom namespace to install Tekton Hub, the installation deleted the `openshift-pipelines` namespace, removing the {pipelines-shortname} installation. With this update, you can use a custom namespace to install Tekton Hub and your {pipelines-shortname} installation is unaffected +* Before this update, if you used a custom namespace to install Tekton Hub, the installation deleted the `openshift-pipelines` namespace, removing the {pipelines-shortname} installation. With this update, you can use a custom namespace to install Tekton Hub and your {pipelines-shortname} installation is unaffected. + +* With this update, you can set additional parameters in the `TektonConfig` CR under the `chain.options.deployments.tekton-chains-controller.spec.template.spec.containers.args` spec to fine tune the execution of the {tekton-chains} controller: +** `--threads-per-controller` sets the number of concurrent threads that the Chains controller +processes. The default value is `2`. +** `--kube-api-burst` sets the maximum burst for the throttle. The default value is `10`. +** `--kube-api-qps` sets the maximum number of queries per second (QPS) to the server from the client. The default value is `5`. ++ +.Example settings for fine-tuning the performance of the {tekton-chains} controller +[source,yaml] +---- +apiVersion: operator.tekton.dev/v1alpha1 +kind: TektonConfig +metadata: + name: config +spec: + chain: + options: + deployments: + tekton-chains-controller: + spec: + template: + spec: + containers: + - name: tekton-chains-controller + args: + - --threads-per-controller=32 + - --kube-api-burst=2 + - --kube-api-qps=3 +----