Skip to content

Commit b2332ba

Browse files
authored
Apply samples config only on vsphere okd-scos (#57397)
1 parent 3409af6 commit b2332ba

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci-operator/step-registry/ipi/install/install/ipi-install-install-commands.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,9 @@ aws|aws-arm64|aws-usgov)
679679
fi
680680
;;
681681
vsphere*)
682-
cat >> "${dir}/openshift/99_openshift-samples-operator-config.yaml" << EOF
682+
683+
if [[ $JOB_NAME =~ .*okd-scos.* ]]; then
684+
cat >> "${dir}/openshift/99_openshift-samples-operator-config.yaml" << EOF
683685
apiVersion: samples.operator.openshift.io/v1
684686
kind: Config
685687
metadata:
@@ -690,6 +692,7 @@ spec:
690692
skippedImagestreams:
691693
- openliberty
692694
EOF
695+
fi
693696
;;
694697
esac
695698

0 commit comments

Comments
 (0)