Skip to content

Commit 840d8fb

Browse files
committed
for debugging purpose
rh-pre-commit.version: 2.1.0 rh-pre-commit.check-secrets: ENABLED
1 parent dcd5b72 commit 840d8fb

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.tekton/pipeline/test-pipeline-service-deployment.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ spec:
8989
taskRef:
9090
name: destroy-cluster
9191
when:
92-
- input: "$(tasks.deploy-cluster.status)"
93-
operator: notin
94-
values: ["None", "Failed"]
92+
- input: "$(tasks.test-pipeline-service.status)"
93+
operator: in
94+
values: ["Succeeded"]
9595
params:
9696
- name: cluster-name
9797
value: "$(tasks.generate-cluster-name.results.cluster-name)"

.tekton/pipeline/test-pipeline-service-upgrade.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ spec:
147147
taskRef:
148148
name: destroy-cluster
149149
when:
150-
- input: "$(tasks.deploy-cluster.status)"
151-
operator: notin
152-
values: ["None", "Failed"]
150+
- input: "$(tasks.test-baseline.status)"
151+
operator: in
152+
values: ["Succeeded"]
153153
params:
154154
- name: cluster-name
155155
value: "$(tasks.generate-cluster-name.results.cluster-name)"

.tekton/tasks/deploy-cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spec:
77
params:
88
- name: ocp_version
99
description: ocp cluster version that you want to provision
10-
default: "4.14"
10+
default: "4.15"
1111
- name: region
1212
description: ocp cluster region where you want to provision
1313
default: "ca-central-1"

.tekton/test-pipeline-service-deployment-ocp-414.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
name: test-pipeline-service-deployment
2121
params:
2222
- name: ocp_version
23-
value: "4.14"
23+
value: "4.15"
2424
- name: repo_url
2525
value: "{{ repo_url }}"
2626
- name: revision

operator/test/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ init() {
8181
setup_test() {
8282
echo "[Setup]"
8383
echo -n " - Namespace configuration: "
84-
kubectl apply -k "$SCRIPT_DIR/manifests/setup/pipeline-service" >"$DEBUG_OUTPUT"
84+
kubectl apply -k "$SCRIPT_DIR/manifests/setup/pipeline-service" --v=8 >"$DEBUG_OUTPUT"
8585
echo "OK"
8686
echo
8787
}

0 commit comments

Comments
 (0)