From 732d0b141371ea58f112614f78f973f92e4da8bb Mon Sep 17 00:00:00 2001 From: Petr Khartskhaev Date: Wed, 11 Feb 2026 09:24:21 +0100 Subject: [PATCH 1/2] Disable and remove openshift-4 bash tests --- .github/workflows/container-tests.yml | 2 +- manifest-minimal.yml | 18 ---- manifest.yml | 18 ---- test/run-openshift-remote-cluster | 52 ---------- test/test-lib-openshift.sh | 1 - test/test-lib-python.sh | 142 -------------------------- test/test-openshift.yaml | 1 - 7 files changed, 1 insertion(+), 233 deletions(-) delete mode 100755 test/run-openshift-remote-cluster delete mode 120000 test/test-lib-openshift.sh delete mode 100644 test/test-lib-python.sh delete mode 120000 test/test-openshift.yaml diff --git a/.github/workflows/container-tests.yml b/.github/workflows/container-tests.yml index 7e05c391..8570cb20 100644 --- a/.github/workflows/container-tests.yml +++ b/.github/workflows/container-tests.yml @@ -13,7 +13,7 @@ jobs: needs: check-readme uses: "sclorg/ci-actions/.github/workflows/container-tests.yml@main" with: - enabled-tests: '["container","container-pytest","openshift-4","openshift-pytest"]' + enabled-tests: '["container","container-pytest","openshift-pytest"]' versions: '[ "3.9", "3.9-minimal", "3.11", "3.11-minimal", "3.12", "3.12-minimal", "3.13", "3.13-minimal", "3.14", "3.14-minimal" ]' openshift-versions: '[ "3.8", "3.9", "3.11", "3.12", "3.12-minimal" ]' secrets: inherit diff --git a/manifest-minimal.yml b/manifest-minimal.yml index 59731322..8eec6f5c 100644 --- a/manifest-minimal.yml +++ b/manifest-minimal.yml @@ -179,12 +179,6 @@ SYMLINK_RULES: - src: ../../../src/test/from-dockerfile/mod_wsgi.Dockerfile.tpl dest: test/from-dockerfile/mod_wsgi.Dockerfile.tpl - - src: ../../test/run-openshift - dest: test/run-openshift - - - src: ../../test/run-openshift-remote-cluster - dest: test/run-openshift-remote-cluster - - src: ../../test/run-openshift-pytest dest: test/run-openshift-pytest @@ -224,18 +218,6 @@ SYMLINK_RULES: - src: ../../common/test-lib.sh dest: test/test-lib.sh - - src: ../../common/test-lib-openshift.sh - dest: test/test-lib-openshift.sh - - - src: ../../common/test-lib-remote-openshift.sh - dest: test/test-lib-remote-openshift.sh - - - src: ../../common/test-openshift.yaml - dest: test/test-openshift.yaml - - - src: ../../test/test-lib-python.sh - dest: test/test-lib-python.sh - - src: ../../imagestreams dest: test/imagestreams diff --git a/manifest.yml b/manifest.yml index ac34cfec..4cb6b4de 100644 --- a/manifest.yml +++ b/manifest.yml @@ -178,12 +178,6 @@ SYMLINK_RULES: - src: ../../../src/test/from-dockerfile/Dockerfile.tpl dest: test/from-dockerfile/Dockerfile.tpl - - src: ../../test/run-openshift - dest: test/run-openshift - - - src: ../../test/run-openshift-remote-cluster - dest: test/run-openshift-remote-cluster - - src: ../../test/run-openshift-pytest dest: test/run-openshift-pytest @@ -223,18 +217,6 @@ SYMLINK_RULES: - src: ../../common/test-lib.sh dest: test/test-lib.sh - - src: ../../common/test-lib-openshift.sh - dest: test/test-lib-openshift.sh - - - src: ../../common/test-lib-remote-openshift.sh - dest: test/test-lib-remote-openshift.sh - - - src: ../../common/test-openshift.yaml - dest: test/test-openshift.yaml - - - src: ../../test/test-lib-python.sh - dest: test/test-lib-python.sh - - src: ../../imagestreams dest: test/imagestreams diff --git a/test/run-openshift-remote-cluster b/test/run-openshift-remote-cluster deleted file mode 100755 index d3665ecf..00000000 --- a/test/run-openshift-remote-cluster +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/bash -# -# Test the Python image in the OpenShift. -# -# IMAGE_NAME specifies a name of the candidate image used for testing. -# VERSION specifies a version of the python in the candidate image. -# The image has to be available before this script is executed. - -THISDIR=$(dirname ${BASH_SOURCE[0]}) - -source "${THISDIR}/test-lib.sh" -source "${THISDIR}/test-lib-openshift.sh" -source "${THISDIR}/test-lib-python.sh" -source "${THISDIR}/test-lib-remote-openshift.sh" - -TEST_LIST="\ -test_python_imagestream -test_python_s2i_app_ex_standalone -test_python_s2i_app_ex -test_python_s2i_templates -test_latest_imagestreams -" - -ct_os_set_ocp4 - -trap ct_os_cleanup EXIT SIGINT - -ct_os_check_compulsory_vars || exit $OC_ERR - -ct_os_check_login || exit $OC_ERR - -ct_os_tag_image_for_cvp "python" - -ct_pull_or_import_postgresql || exit $OC_ERR - -set -u - -# For testing on OpenShift 4 we use internal registry -export CT_OCP4_TEST=true - -test -n "${IMAGE_NAME-}" || false 'make sure $IMAGE_NAME is defined' -test -n "${VERSION-}" || false 'make sure $VERSION is defined' - -if [[ "${VERSION}" == "3.9-minimal" ]] || [[ "${VERSION}" == "3.11-minimal" ]]; then - echo "Skipping tests for minimal images. We do not provide them in container catalog registry." - exit 0 -else - TEST_SUMMARY='' - TEST_SET=${TESTS:-$TEST_LIST} ct_run_tests_from_testset "openshift-remote-cluster" -fi - -# vim: set tabstop=2:shiftwidth=2:expandtab: diff --git a/test/test-lib-openshift.sh b/test/test-lib-openshift.sh deleted file mode 120000 index f48003b8..00000000 --- a/test/test-lib-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../common/test-lib-openshift.sh \ No newline at end of file diff --git a/test/test-lib-python.sh b/test/test-lib-python.sh deleted file mode 100644 index 197a0af5..00000000 --- a/test/test-lib-python.sh +++ /dev/null @@ -1,142 +0,0 @@ -#!/bin/bash -# -# Functions for tests for the Python image in OpenShift. -# -# IMAGE_NAME specifies a name of the candidate image used for testing. -# The image has to be available before this script is executed. -# - -THISDIR=$(dirname ${BASH_SOURCE[0]}) - -source "${THISDIR}/test-lib.sh" -source "${THISDIR}/test-lib-openshift.sh" - -function ct_pull_or_import_postgresql() { - if [[ "${VERSION}" == "3.11" ]] || [[ "${VERSION}" == "3.11-minimal" ]] || [[ "${VERSION}" == "3.12" ]] || [[ "${VERSION}" == "3.12-minimal" ]]; then - postgresql_image="quay.io/sclorg/postgresql-12-c8s" - image_short="postgresql:12" - image_tag="${image_short}" - else - postgresql_image="quay.io/sclorg/postgresql-10-c8s:c8s" - image_short="postgresql:10-c8s" - image_tag="postgresql:10" - fi - # Variable CVP is set by CVP pipeline - if [ "${CVP:-0}" -eq "0" ]; then - # In case of container or OpenShift 4 tests - # Pull image before going through tests - # Exit in case of failure, because postgresql container is mandatory - ct_pull_image "${postgresql_image}" "true" - else - # Import postgresql-10-c8s image before running tests on CVP - oc import-image "${image_short}:latest" --from="${postgresql_image}:latest" --insecure=true --confirm - # Tag postgresql image to "postgresql:10" which is expected by test suite - oc tag "${image_short}:latest" "${image_tag}" - fi -} - -# Check the imagestream -function test_python_imagestream() { - if [[ "${VERSIONS}" == "3.12" ]] || [[ "${VERSIONS}" == "3.12-minimal" ]] && [[ "${OS}" == "rhel8" ]]; then - echo "Skipping tests for ${VERSIONS}. It is not supported in Container Catalog. Imagestreams do not exist for them." - return 0 - fi - if [[ "${VERSIONS}" == "3.9-minimal" ]] || [[ "${VERSIONS}" == "3.11-minimal" ]]; then - echo "Skipping tests for ${VERSIONS}. It is not supported in Container Catalog. Imagestreams do not exist for them." - return 0 - fi - local tag="-ubi9" - if [ "${OS}" == "rhel8" ]; then - tag="-ubi8" - elif [ "${OS}" == "rhel10" ]; then - tag="-ubi10" - fi - - # On RHEL10 we have only 3.12-minimal image - if [[ "${VERSION}" == "3.11" ]] || [[ "${VERSION}" == "3.12" ]] || [[ "${VERSION}" == "3.12-minimal" ]]; then - branch="4.2.x" - postgresql_image="quay.io/sclorg/postgresql-12-c8s|postgresql:12" - postgresql_version="12" - else - branch="2.2.x" - postgresql_image="quay.io/sclorg/postgresql-10-c8s:c8s|postgresql:10" - postgresql_version="10" - fi - TEMPLATES=" -django-postgresql.json \ -django-postgresql-persistent.json" - for template in $TEMPLATES; do - ct_os_test_image_stream_quickstart "${THISDIR}/imagestreams/python-${OS//[0-9]/}.json" \ - "https://raw.githubusercontent.com/sclorg/django-ex/${branch}/openshift/templates/${template}" \ - "${IMAGE_NAME}" \ - 'python' \ - 'Welcome to your Django application on OpenShift' \ - 8080 http 200 "-p SOURCE_REPOSITORY_REF=$branch -p PYTHON_VERSION=${VERSION}${tag} -p POSTGRESQL_VERSION=${postgresql_version} -p NAME=python-testing" \ - "$postgresql_image" - done -} - -function test_python_s2i_app_ex_standalone() { - ct_os_test_s2i_app "${IMAGE_NAME}" \ - "https://github.com/sclorg/s2i-python-container.git" \ - "examples/standalone-test-app" \ - "Hello World from standalone WSGI application!" -} - -function test_python_s2i_app_ex() { - if [[ "${VERSION}" == *"minimal"* ]]; then - VERSION=$(echo "${VERSION}" | cut -d "-" -f 1) - fi - if [[ "${VERSION}" == "3.11" ]] || [[ "${VERSION}" == "3.12" ]] || [[ "${VERSION}" == "3.12-minimal" ]]; then - branch="4.2.x" - else - branch="2.2.x" - fi - - django_example_repo_url="https://github.com/sclorg/django-ex.git#${branch}" - ct_os_test_s2i_app "${IMAGE_NAME}" \ - "${django_example_repo_url}" \ - . \ - 'Welcome to your Django application on OpenShift' -} - - -function test_python_s2i_templates() { - if [ -z "${EPHEMERAL_TEMPLATES:-}" ]; then - EPHEMERAL_TEMPLATES=" -django-postgresql.json \ -django-postgresql-persistent.json" - fi - if [[ "${VERSION}" == *"minimal"* ]]; then - VERSION=$(echo "${VERSION}" | cut -d "-" -f 1) - fi - if [[ "${VERSION}" == "3.11" ]] || [[ "${VERSION}" == "3.12" ]] || [[ "${VERSION}" == "3.12-minimal" ]]; then - postgresql_image="quay.io/sclorg/postgresql-12-c8s|postgresql:12" - postgresql_version="12" - branch="4.2.x" - else - postgresql_image="quay.io/sclorg/postgresql-10-c8s:c8s|postgresql:10" - postgresql_version="10" - branch="2.2.x" - fi - for template in $EPHEMERAL_TEMPLATES; do - - ct_os_test_template_app "$IMAGE_NAME" \ - "https://raw.githubusercontent.com/sclorg/django-ex/${branch}/openshift/templates/${template}" \ - python \ - 'Welcome to your Django application on OpenShift' \ - 8080 http 200 "-p SOURCE_REPOSITORY_REF=$branch -p PYTHON_VERSION=${VERSION} -p POSTGRESQL_VERSION=${postgresql_version} -p NAME=python-testing" \ - "${postgresql_image}" - done -} - -function test_latest_imagestreams() { - info "Testing the latest version in imagestreams" - # Switch to root directory of a container - pushd "${THISDIR}/../.." >/dev/null - ct_check_latest_imagestreams - popd >/dev/null -} - - -# vim: set tabstop=2:shiftwidth=2:expandtab: diff --git a/test/test-openshift.yaml b/test/test-openshift.yaml deleted file mode 120000 index 9316d8fa..00000000 --- a/test/test-openshift.yaml +++ /dev/null @@ -1 +0,0 @@ -../common/test-openshift.yaml \ No newline at end of file From 9582b25102ad5a3ea33e6f962aee8b2d13a28caf Mon Sep 17 00:00:00 2001 From: Petr Khartskhaev Date: Tue, 10 Feb 2026 15:36:23 +0100 Subject: [PATCH 2/2] regenerate files --- 3.11-minimal/test/run-openshift-remote-cluster | 1 - 3.11-minimal/test/test-lib-openshift.sh | 1 - 3.11-minimal/test/test-lib-python.sh | 1 - 3.11-minimal/test/test-lib-remote-openshift.sh | 1 - 3.11-minimal/test/test-openshift.yaml | 1 - 3.11/test/run-openshift-remote-cluster | 1 - 3.11/test/test-lib-openshift.sh | 1 - 3.11/test/test-lib-python.sh | 1 - 3.11/test/test-lib-remote-openshift.sh | 1 - 3.11/test/test-openshift.yaml | 1 - 3.12-minimal/test/run-openshift-remote-cluster | 1 - 3.12-minimal/test/test-lib-openshift.sh | 1 - 3.12-minimal/test/test-lib-python.sh | 1 - 3.12-minimal/test/test-lib-remote-openshift.sh | 1 - 3.12-minimal/test/test-openshift.yaml | 1 - 3.12/test/run-openshift-remote-cluster | 1 - 3.12/test/test-lib-openshift.sh | 1 - 3.12/test/test-lib-python.sh | 1 - 3.12/test/test-lib-remote-openshift.sh | 1 - 3.12/test/test-openshift.yaml | 1 - 3.13-minimal/test/run-openshift-remote-cluster | 1 - 3.13-minimal/test/test-lib-openshift.sh | 1 - 3.13-minimal/test/test-lib-python.sh | 1 - 3.13-minimal/test/test-lib-remote-openshift.sh | 1 - 3.13-minimal/test/test-openshift.yaml | 1 - 3.13/test/run-openshift-remote-cluster | 1 - 3.13/test/test-lib-openshift.sh | 1 - 3.13/test/test-lib-python.sh | 1 - 3.13/test/test-lib-remote-openshift.sh | 1 - 3.13/test/test-openshift.yaml | 1 - 3.6/test/run-openshift-remote-cluster | 1 - 3.6/test/test-lib-openshift.sh | 1 - 3.6/test/test-lib-python.sh | 1 - 3.6/test/test-lib-remote-openshift.sh | 1 - 3.6/test/test-openshift.yaml | 1 - 3.9-minimal/test/run-openshift-remote-cluster | 1 - 3.9-minimal/test/test-lib-openshift.sh | 1 - 3.9-minimal/test/test-lib-python.sh | 1 - 3.9-minimal/test/test-lib-remote-openshift.sh | 1 - 3.9-minimal/test/test-openshift.yaml | 1 - 3.9/test/run-openshift-remote-cluster | 1 - 3.9/test/test-lib-openshift.sh | 1 - 3.9/test/test-lib-python.sh | 1 - 3.9/test/test-lib-remote-openshift.sh | 1 - 3.9/test/test-openshift.yaml | 1 - 45 files changed, 45 deletions(-) delete mode 120000 3.11-minimal/test/run-openshift-remote-cluster delete mode 120000 3.11-minimal/test/test-lib-openshift.sh delete mode 120000 3.11-minimal/test/test-lib-python.sh delete mode 120000 3.11-minimal/test/test-lib-remote-openshift.sh delete mode 120000 3.11-minimal/test/test-openshift.yaml delete mode 120000 3.11/test/run-openshift-remote-cluster delete mode 120000 3.11/test/test-lib-openshift.sh delete mode 120000 3.11/test/test-lib-python.sh delete mode 120000 3.11/test/test-lib-remote-openshift.sh delete mode 120000 3.11/test/test-openshift.yaml delete mode 120000 3.12-minimal/test/run-openshift-remote-cluster delete mode 120000 3.12-minimal/test/test-lib-openshift.sh delete mode 120000 3.12-minimal/test/test-lib-python.sh delete mode 120000 3.12-minimal/test/test-lib-remote-openshift.sh delete mode 120000 3.12-minimal/test/test-openshift.yaml delete mode 120000 3.12/test/run-openshift-remote-cluster delete mode 120000 3.12/test/test-lib-openshift.sh delete mode 120000 3.12/test/test-lib-python.sh delete mode 120000 3.12/test/test-lib-remote-openshift.sh delete mode 120000 3.12/test/test-openshift.yaml delete mode 120000 3.13-minimal/test/run-openshift-remote-cluster delete mode 120000 3.13-minimal/test/test-lib-openshift.sh delete mode 120000 3.13-minimal/test/test-lib-python.sh delete mode 120000 3.13-minimal/test/test-lib-remote-openshift.sh delete mode 120000 3.13-minimal/test/test-openshift.yaml delete mode 120000 3.13/test/run-openshift-remote-cluster delete mode 120000 3.13/test/test-lib-openshift.sh delete mode 120000 3.13/test/test-lib-python.sh delete mode 120000 3.13/test/test-lib-remote-openshift.sh delete mode 120000 3.13/test/test-openshift.yaml delete mode 120000 3.6/test/run-openshift-remote-cluster delete mode 120000 3.6/test/test-lib-openshift.sh delete mode 120000 3.6/test/test-lib-python.sh delete mode 120000 3.6/test/test-lib-remote-openshift.sh delete mode 120000 3.6/test/test-openshift.yaml delete mode 120000 3.9-minimal/test/run-openshift-remote-cluster delete mode 120000 3.9-minimal/test/test-lib-openshift.sh delete mode 120000 3.9-minimal/test/test-lib-python.sh delete mode 120000 3.9-minimal/test/test-lib-remote-openshift.sh delete mode 120000 3.9-minimal/test/test-openshift.yaml delete mode 120000 3.9/test/run-openshift-remote-cluster delete mode 120000 3.9/test/test-lib-openshift.sh delete mode 120000 3.9/test/test-lib-python.sh delete mode 120000 3.9/test/test-lib-remote-openshift.sh delete mode 120000 3.9/test/test-openshift.yaml diff --git a/3.11-minimal/test/run-openshift-remote-cluster b/3.11-minimal/test/run-openshift-remote-cluster deleted file mode 120000 index 1bffcba8..00000000 --- a/3.11-minimal/test/run-openshift-remote-cluster +++ /dev/null @@ -1 +0,0 @@ -../../test/run-openshift-remote-cluster \ No newline at end of file diff --git a/3.11-minimal/test/test-lib-openshift.sh b/3.11-minimal/test/test-lib-openshift.sh deleted file mode 120000 index 4f9f2996..00000000 --- a/3.11-minimal/test/test-lib-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-openshift.sh \ No newline at end of file diff --git a/3.11-minimal/test/test-lib-python.sh b/3.11-minimal/test/test-lib-python.sh deleted file mode 120000 index 0fa72132..00000000 --- a/3.11-minimal/test/test-lib-python.sh +++ /dev/null @@ -1 +0,0 @@ -../../test/test-lib-python.sh \ No newline at end of file diff --git a/3.11-minimal/test/test-lib-remote-openshift.sh b/3.11-minimal/test/test-lib-remote-openshift.sh deleted file mode 120000 index 92ad2f4d..00000000 --- a/3.11-minimal/test/test-lib-remote-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-remote-openshift.sh \ No newline at end of file diff --git a/3.11-minimal/test/test-openshift.yaml b/3.11-minimal/test/test-openshift.yaml deleted file mode 120000 index 8613fbba..00000000 --- a/3.11-minimal/test/test-openshift.yaml +++ /dev/null @@ -1 +0,0 @@ -../../common/test-openshift.yaml \ No newline at end of file diff --git a/3.11/test/run-openshift-remote-cluster b/3.11/test/run-openshift-remote-cluster deleted file mode 120000 index 1bffcba8..00000000 --- a/3.11/test/run-openshift-remote-cluster +++ /dev/null @@ -1 +0,0 @@ -../../test/run-openshift-remote-cluster \ No newline at end of file diff --git a/3.11/test/test-lib-openshift.sh b/3.11/test/test-lib-openshift.sh deleted file mode 120000 index 4f9f2996..00000000 --- a/3.11/test/test-lib-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-openshift.sh \ No newline at end of file diff --git a/3.11/test/test-lib-python.sh b/3.11/test/test-lib-python.sh deleted file mode 120000 index 0fa72132..00000000 --- a/3.11/test/test-lib-python.sh +++ /dev/null @@ -1 +0,0 @@ -../../test/test-lib-python.sh \ No newline at end of file diff --git a/3.11/test/test-lib-remote-openshift.sh b/3.11/test/test-lib-remote-openshift.sh deleted file mode 120000 index 92ad2f4d..00000000 --- a/3.11/test/test-lib-remote-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-remote-openshift.sh \ No newline at end of file diff --git a/3.11/test/test-openshift.yaml b/3.11/test/test-openshift.yaml deleted file mode 120000 index 8613fbba..00000000 --- a/3.11/test/test-openshift.yaml +++ /dev/null @@ -1 +0,0 @@ -../../common/test-openshift.yaml \ No newline at end of file diff --git a/3.12-minimal/test/run-openshift-remote-cluster b/3.12-minimal/test/run-openshift-remote-cluster deleted file mode 120000 index 1bffcba8..00000000 --- a/3.12-minimal/test/run-openshift-remote-cluster +++ /dev/null @@ -1 +0,0 @@ -../../test/run-openshift-remote-cluster \ No newline at end of file diff --git a/3.12-minimal/test/test-lib-openshift.sh b/3.12-minimal/test/test-lib-openshift.sh deleted file mode 120000 index 4f9f2996..00000000 --- a/3.12-minimal/test/test-lib-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-openshift.sh \ No newline at end of file diff --git a/3.12-minimal/test/test-lib-python.sh b/3.12-minimal/test/test-lib-python.sh deleted file mode 120000 index 0fa72132..00000000 --- a/3.12-minimal/test/test-lib-python.sh +++ /dev/null @@ -1 +0,0 @@ -../../test/test-lib-python.sh \ No newline at end of file diff --git a/3.12-minimal/test/test-lib-remote-openshift.sh b/3.12-minimal/test/test-lib-remote-openshift.sh deleted file mode 120000 index 92ad2f4d..00000000 --- a/3.12-minimal/test/test-lib-remote-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-remote-openshift.sh \ No newline at end of file diff --git a/3.12-minimal/test/test-openshift.yaml b/3.12-minimal/test/test-openshift.yaml deleted file mode 120000 index 8613fbba..00000000 --- a/3.12-minimal/test/test-openshift.yaml +++ /dev/null @@ -1 +0,0 @@ -../../common/test-openshift.yaml \ No newline at end of file diff --git a/3.12/test/run-openshift-remote-cluster b/3.12/test/run-openshift-remote-cluster deleted file mode 120000 index 1bffcba8..00000000 --- a/3.12/test/run-openshift-remote-cluster +++ /dev/null @@ -1 +0,0 @@ -../../test/run-openshift-remote-cluster \ No newline at end of file diff --git a/3.12/test/test-lib-openshift.sh b/3.12/test/test-lib-openshift.sh deleted file mode 120000 index 4f9f2996..00000000 --- a/3.12/test/test-lib-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-openshift.sh \ No newline at end of file diff --git a/3.12/test/test-lib-python.sh b/3.12/test/test-lib-python.sh deleted file mode 120000 index 0fa72132..00000000 --- a/3.12/test/test-lib-python.sh +++ /dev/null @@ -1 +0,0 @@ -../../test/test-lib-python.sh \ No newline at end of file diff --git a/3.12/test/test-lib-remote-openshift.sh b/3.12/test/test-lib-remote-openshift.sh deleted file mode 120000 index 92ad2f4d..00000000 --- a/3.12/test/test-lib-remote-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-remote-openshift.sh \ No newline at end of file diff --git a/3.12/test/test-openshift.yaml b/3.12/test/test-openshift.yaml deleted file mode 120000 index 8613fbba..00000000 --- a/3.12/test/test-openshift.yaml +++ /dev/null @@ -1 +0,0 @@ -../../common/test-openshift.yaml \ No newline at end of file diff --git a/3.13-minimal/test/run-openshift-remote-cluster b/3.13-minimal/test/run-openshift-remote-cluster deleted file mode 120000 index 1bffcba8..00000000 --- a/3.13-minimal/test/run-openshift-remote-cluster +++ /dev/null @@ -1 +0,0 @@ -../../test/run-openshift-remote-cluster \ No newline at end of file diff --git a/3.13-minimal/test/test-lib-openshift.sh b/3.13-minimal/test/test-lib-openshift.sh deleted file mode 120000 index 4f9f2996..00000000 --- a/3.13-minimal/test/test-lib-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-openshift.sh \ No newline at end of file diff --git a/3.13-minimal/test/test-lib-python.sh b/3.13-minimal/test/test-lib-python.sh deleted file mode 120000 index 0fa72132..00000000 --- a/3.13-minimal/test/test-lib-python.sh +++ /dev/null @@ -1 +0,0 @@ -../../test/test-lib-python.sh \ No newline at end of file diff --git a/3.13-minimal/test/test-lib-remote-openshift.sh b/3.13-minimal/test/test-lib-remote-openshift.sh deleted file mode 120000 index 92ad2f4d..00000000 --- a/3.13-minimal/test/test-lib-remote-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-remote-openshift.sh \ No newline at end of file diff --git a/3.13-minimal/test/test-openshift.yaml b/3.13-minimal/test/test-openshift.yaml deleted file mode 120000 index 8613fbba..00000000 --- a/3.13-minimal/test/test-openshift.yaml +++ /dev/null @@ -1 +0,0 @@ -../../common/test-openshift.yaml \ No newline at end of file diff --git a/3.13/test/run-openshift-remote-cluster b/3.13/test/run-openshift-remote-cluster deleted file mode 120000 index 1bffcba8..00000000 --- a/3.13/test/run-openshift-remote-cluster +++ /dev/null @@ -1 +0,0 @@ -../../test/run-openshift-remote-cluster \ No newline at end of file diff --git a/3.13/test/test-lib-openshift.sh b/3.13/test/test-lib-openshift.sh deleted file mode 120000 index 4f9f2996..00000000 --- a/3.13/test/test-lib-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-openshift.sh \ No newline at end of file diff --git a/3.13/test/test-lib-python.sh b/3.13/test/test-lib-python.sh deleted file mode 120000 index 0fa72132..00000000 --- a/3.13/test/test-lib-python.sh +++ /dev/null @@ -1 +0,0 @@ -../../test/test-lib-python.sh \ No newline at end of file diff --git a/3.13/test/test-lib-remote-openshift.sh b/3.13/test/test-lib-remote-openshift.sh deleted file mode 120000 index 92ad2f4d..00000000 --- a/3.13/test/test-lib-remote-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-remote-openshift.sh \ No newline at end of file diff --git a/3.13/test/test-openshift.yaml b/3.13/test/test-openshift.yaml deleted file mode 120000 index 8613fbba..00000000 --- a/3.13/test/test-openshift.yaml +++ /dev/null @@ -1 +0,0 @@ -../../common/test-openshift.yaml \ No newline at end of file diff --git a/3.6/test/run-openshift-remote-cluster b/3.6/test/run-openshift-remote-cluster deleted file mode 120000 index 1bffcba8..00000000 --- a/3.6/test/run-openshift-remote-cluster +++ /dev/null @@ -1 +0,0 @@ -../../test/run-openshift-remote-cluster \ No newline at end of file diff --git a/3.6/test/test-lib-openshift.sh b/3.6/test/test-lib-openshift.sh deleted file mode 120000 index 4f9f2996..00000000 --- a/3.6/test/test-lib-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-openshift.sh \ No newline at end of file diff --git a/3.6/test/test-lib-python.sh b/3.6/test/test-lib-python.sh deleted file mode 120000 index 0fa72132..00000000 --- a/3.6/test/test-lib-python.sh +++ /dev/null @@ -1 +0,0 @@ -../../test/test-lib-python.sh \ No newline at end of file diff --git a/3.6/test/test-lib-remote-openshift.sh b/3.6/test/test-lib-remote-openshift.sh deleted file mode 120000 index 92ad2f4d..00000000 --- a/3.6/test/test-lib-remote-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-remote-openshift.sh \ No newline at end of file diff --git a/3.6/test/test-openshift.yaml b/3.6/test/test-openshift.yaml deleted file mode 120000 index 8613fbba..00000000 --- a/3.6/test/test-openshift.yaml +++ /dev/null @@ -1 +0,0 @@ -../../common/test-openshift.yaml \ No newline at end of file diff --git a/3.9-minimal/test/run-openshift-remote-cluster b/3.9-minimal/test/run-openshift-remote-cluster deleted file mode 120000 index 1bffcba8..00000000 --- a/3.9-minimal/test/run-openshift-remote-cluster +++ /dev/null @@ -1 +0,0 @@ -../../test/run-openshift-remote-cluster \ No newline at end of file diff --git a/3.9-minimal/test/test-lib-openshift.sh b/3.9-minimal/test/test-lib-openshift.sh deleted file mode 120000 index 4f9f2996..00000000 --- a/3.9-minimal/test/test-lib-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-openshift.sh \ No newline at end of file diff --git a/3.9-minimal/test/test-lib-python.sh b/3.9-minimal/test/test-lib-python.sh deleted file mode 120000 index 0fa72132..00000000 --- a/3.9-minimal/test/test-lib-python.sh +++ /dev/null @@ -1 +0,0 @@ -../../test/test-lib-python.sh \ No newline at end of file diff --git a/3.9-minimal/test/test-lib-remote-openshift.sh b/3.9-minimal/test/test-lib-remote-openshift.sh deleted file mode 120000 index 92ad2f4d..00000000 --- a/3.9-minimal/test/test-lib-remote-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-remote-openshift.sh \ No newline at end of file diff --git a/3.9-minimal/test/test-openshift.yaml b/3.9-minimal/test/test-openshift.yaml deleted file mode 120000 index 8613fbba..00000000 --- a/3.9-minimal/test/test-openshift.yaml +++ /dev/null @@ -1 +0,0 @@ -../../common/test-openshift.yaml \ No newline at end of file diff --git a/3.9/test/run-openshift-remote-cluster b/3.9/test/run-openshift-remote-cluster deleted file mode 120000 index 1bffcba8..00000000 --- a/3.9/test/run-openshift-remote-cluster +++ /dev/null @@ -1 +0,0 @@ -../../test/run-openshift-remote-cluster \ No newline at end of file diff --git a/3.9/test/test-lib-openshift.sh b/3.9/test/test-lib-openshift.sh deleted file mode 120000 index 4f9f2996..00000000 --- a/3.9/test/test-lib-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-openshift.sh \ No newline at end of file diff --git a/3.9/test/test-lib-python.sh b/3.9/test/test-lib-python.sh deleted file mode 120000 index 0fa72132..00000000 --- a/3.9/test/test-lib-python.sh +++ /dev/null @@ -1 +0,0 @@ -../../test/test-lib-python.sh \ No newline at end of file diff --git a/3.9/test/test-lib-remote-openshift.sh b/3.9/test/test-lib-remote-openshift.sh deleted file mode 120000 index 92ad2f4d..00000000 --- a/3.9/test/test-lib-remote-openshift.sh +++ /dev/null @@ -1 +0,0 @@ -../../common/test-lib-remote-openshift.sh \ No newline at end of file diff --git a/3.9/test/test-openshift.yaml b/3.9/test/test-openshift.yaml deleted file mode 120000 index 8613fbba..00000000 --- a/3.9/test/test-openshift.yaml +++ /dev/null @@ -1 +0,0 @@ -../../common/test-openshift.yaml \ No newline at end of file