File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -453,7 +453,7 @@ apply_yaml_files() {
453
453
# Select the configuration file based on the namespace or job
454
454
config_file=$( select_config_map_file)
455
455
# Apply the ConfigMap with the correct file
456
- if [[ " ${project} " == * showcase-k8s* ]]; then
456
+ if [[ " ${project} " == * showcase-k8s* ]]; then # Specific to non-RBAC deployment on K8S
457
457
create_app_config_map_k8s " $config_file " " $project "
458
458
else
459
459
create_app_config_map " $config_file " " $project "
@@ -474,8 +474,9 @@ apply_yaml_files() {
474
474
oc apply -f " $dir /resources/pipeline-run/hello-world-pipeline-run.yaml"
475
475
476
476
# Create Deployment and Pipeline for Topology test.
477
- oc apply -f " $dir /resources/topology_test/topology-test.yaml"
478
-
477
+ if [[ " ${project} " != * k8s* ]]; then # Specific to OCP deployments (uses Route which is not supported by K8S)
478
+ oc apply -f " $dir /resources/topology_test/topology-test.yaml"
479
+ fi
479
480
}
480
481
481
482
deploy_test_backstage_provider () {
Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ export default defineConfig({
97
97
"**/playwright/e2e/authProviders/**/*.spec.ts" ,
98
98
"**/playwright/e2e/plugins/bulk-import.spec.ts" ,
99
99
"**/playwright/e2e/plugins/tekton/tekton.spec.ts" ,
100
+ "**/playwright/e2e/plugins/topology/topology.spec.ts" , // uses Route (not supported in K8S)
100
101
"**/playwright/e2e/catalog-scaffoldedfromLink.spec.ts" ,
101
102
"**/playwright/e2e/plugins/ocm.spec.ts" ,
102
103
"**/playwright/e2e/audit-log/**/*.spec.ts" ,
You can’t perform that action at this time.
0 commit comments