Skip to content

Commit 1d6040b

Browse files
fix(ISV-7182): Fix index-signature-verification pipeline
1 parent 4c84ce1 commit 1d6040b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

ansible/roles/config_ocp_cluster/files/tasks/chat-pipelinerun-summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ spec:
9393
status=$(cat payload.json | grep -oP "Status: (?=\*).\K.*(?=\*)")
9494
9595
# Skip notifications for operator-hosted-pipeline and passed pipelines
96-
if cat payload.json | grep -oP "PipelineRun: operator-hosted-pipeline*" > /dev/null || [ "$status" != "Failed" ];
96+
if cat payload.json | grep -oP "PipelineRun: operator-hosted-pipeline*" > /dev/null || [[ "$status" != "Failed" && "$status" != "PipelineRunTimeout" && "$status" != "TaskRunCancelled" ]];
9797
then
9898
echo "Skipping Slack notification"
9999
else

ansible/roles/index_signature_verification/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
generateName: index-signature-verification-pipeline-run-
9696
spec:
9797
timeouts:
98-
pipeline: 30m
98+
pipeline: 90m
9999
pipelineRef:
100100
name: index-signature-verification-pipeline
101101
workspaces:
@@ -131,7 +131,7 @@
131131
metadata:
132132
name: index-signature-verification-scheduler
133133
spec:
134-
schedule: "0 * * * *"
134+
schedule: "0 */2 * * *"
135135
jobTemplate:
136136
spec:
137137
template:

0 commit comments

Comments
 (0)