Skip to content

Commit 5196dbc

Browse files
author
Souvik Sarkar
committed
RHDEVDOCS-4511 Pipelines 1.6.4 Release Notes
updates
1 parent 026c973 commit 5196dbc

File tree

1 file changed

+70
-1
lines changed

1 file changed

+70
-1
lines changed

modules/op-release-notes-1-6.adoc

Lines changed: 70 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,4 +331,73 @@ When you upgrade to future releases, the {pipelines-title} Operator will automat
331331
// https://issues.redhat.com/browse/SRVKP-2249
332332

333333
* Before this update, setting the `clusterTasks` and `pipelineTemplates` fields to `false` in the `TektonConfig` CR slowed the removal of cluster tasks and pipeline templates. This update improves the speed of lifecycle management of Tekton resources such as cluster tasks and pipeline templates.
334-
// https://issues.redhat.com/browse/SRVKP-2043
334+
// https://issues.redhat.com/browse/SRVKP-2043
335+
336+
[id="release-notes-1-6-4_{context}"]
337+
== Release notes for {pipelines-title} General Availability 1.6.4
338+
339+
[id="known-issues-1-6-4_{context}"]
340+
=== Known issues
341+
342+
* After upgrading from {pipelines-title} 1.5.2 to 1.6.4, accessing the event listener routes returns a `503` error.
343+
+
344+
Workaround: Modify the target port in the YAML file for the event listener's route.
345+
+
346+
. Extract the route name for the relevant namespace.
347+
+
348+
[source,terminal]
349+
----
350+
$ oc get route -n <namespace>
351+
----
352+
+
353+
. Edit the route to modify the value of the `targetPort` field.
354+
+
355+
[source,terminal]
356+
----
357+
$ oc edit route -n <namespace> <el-route_name>
358+
----
359+
+
360+
.Example: Existing event listener route
361+
+
362+
[source,yaml]
363+
----
364+
...
365+
spec:
366+
host: el-event-listener-q8c3w5-test-upgrade1.apps.ve49aws.aws.ospqa.com
367+
port:
368+
targetPort: 8000
369+
to:
370+
kind: Service
371+
name: el-event-listener-q8c3w5
372+
weight: 100
373+
wildcardPolicy: None
374+
...
375+
----
376+
+
377+
.Example: Modified event listener route
378+
+
379+
[source,yaml]
380+
----
381+
...
382+
spec:
383+
host: el-event-listener-q8c3w5-test-upgrade1.apps.ve49aws.aws.ospqa.com
384+
port:
385+
targetPort: http-listener
386+
to:
387+
kind: Service
388+
name: el-event-listener-q8c3w5
389+
weight: 100
390+
wildcardPolicy: None
391+
...
392+
----
393+
394+
// https://issues.redhat.com/browse/SRVKP-2502
395+
396+
[id="fixed-issues-1-6-4_{context}"]
397+
=== Fixed issues
398+
399+
* Before this update, the Operator failed when creating RBAC resources if any namespace was in a `Terminating` state. With this update, the Operator ignores namespaces in a `Terminating` state and creates the RBAC resources.
400+
// https://issues.redhat.com/browse/SRVKP-2248
401+
402+
* Before this update, the task runs failed or restarted due to absence of annotation specifying the release version of the associated Tekton controller. With this update, the inclusion of the appropriate annotations are automated, and the tasks run without failure or restarts.
403+
// https://issues.redhat.com/browse/SRVKP-2445

0 commit comments

Comments
 (0)