diff --git a/.github/ci_templates/e2e_tests.yml b/.github/ci_templates/e2e_tests.yml index af4850e2a9..a360a7587f 100644 --- a/.github/ci_templates/e2e_tests.yml +++ b/.github/ci_templates/e2e_tests.yml @@ -339,6 +339,7 @@ check_e2e_labels: KUBERNETES_VERSION: "{!{ $ctx.kubernetesVersion }!}" {!{- end }!} EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, {!{ $runsOnLabel }!}] steps: {!{ tmpl.Exec "started_at_output" . | strings.Indent 4 }!} @@ -368,6 +369,12 @@ check_e2e_labels: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -486,6 +493,7 @@ check_e2e_labels: - name: "Run e2e test: {!{ $ctx.providerName }!}/{!{ $ctx.criName }!}/{!{ $ctx.kubernetesVersion }!}" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: {!{ $ctx.providerName }!} CRI: {!{ $ctx.criName }!} @@ -625,7 +633,7 @@ check_e2e_labels: # {!{ $ctx.jobID }!}: name: "{!{ $ctx.jobName }!}" - if: ${{ fromJson(inputs.test_config).cri == '{!{ $ctx.cri }!}' && github.event.inputs.k8s_version == '{!{ $ctx.kubernetesVersion }!}' && github.event.inputs.layout == '{!{ $ctx.layout }!}' }} + if: false env: PROVIDER: {!{ $ctx.providerName }!} CRI: {!{ $ctx.criName }!} @@ -636,7 +644,6 @@ check_e2e_labels: KUBERNETES_VERSION: "{!{ $ctx.kubernetesVersion }!}" {!{- end }!} EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, {!{ $runsOnLabel }!}] steps: {!{ tmpl.Exec "started_at_output" . | strings.Indent 4 }!} @@ -658,6 +665,11 @@ check_e2e_labels: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" diff --git a/.github/workflows/e2e-abort-aws.yml b/.github/workflows/e2e-abort-aws.yml index 8c78173c6e..79a623f679 100644 --- a/.github/workflows/e2e-abort-aws.yml +++ b/.github/workflows/e2e-abort-aws.yml @@ -75,14 +75,13 @@ jobs: # run_containerd_1_26: name: "destroy cluster: AWS, Containerd, Kubernetes 1.26" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.26' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: AWS CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -180,6 +179,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -354,14 +358,13 @@ jobs: # run_containerd_1_27: name: "destroy cluster: AWS, Containerd, Kubernetes 1.27" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.27' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: AWS CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -459,6 +462,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -633,14 +641,13 @@ jobs: # run_containerd_1_28: name: "destroy cluster: AWS, Containerd, Kubernetes 1.28" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.28' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: AWS CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -738,6 +745,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -912,14 +924,13 @@ jobs: # run_containerd_1_29: name: "destroy cluster: AWS, Containerd, Kubernetes 1.29" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.29' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: AWS CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1017,6 +1028,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1191,14 +1207,13 @@ jobs: # run_containerd_1_30: name: "destroy cluster: AWS, Containerd, Kubernetes 1.30" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.30' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: AWS CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1296,6 +1311,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1470,14 +1490,13 @@ jobs: # run_containerd_automatic: name: "destroy cluster: AWS, Containerd, Kubernetes Automatic" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == 'Automatic' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: AWS CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1575,6 +1594,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" diff --git a/.github/workflows/e2e-abort-azure.yml b/.github/workflows/e2e-abort-azure.yml index f88b31e246..655eab43b0 100644 --- a/.github/workflows/e2e-abort-azure.yml +++ b/.github/workflows/e2e-abort-azure.yml @@ -75,14 +75,13 @@ jobs: # run_containerd_1_26: name: "destroy cluster: Azure, Containerd, Kubernetes 1.26" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.26' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: Azure CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -180,6 +179,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -358,14 +362,13 @@ jobs: # run_containerd_1_27: name: "destroy cluster: Azure, Containerd, Kubernetes 1.27" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.27' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: Azure CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -463,6 +466,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -641,14 +649,13 @@ jobs: # run_containerd_1_28: name: "destroy cluster: Azure, Containerd, Kubernetes 1.28" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.28' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: Azure CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -746,6 +753,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -924,14 +936,13 @@ jobs: # run_containerd_1_29: name: "destroy cluster: Azure, Containerd, Kubernetes 1.29" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.29' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: Azure CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1029,6 +1040,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1207,14 +1223,13 @@ jobs: # run_containerd_1_30: name: "destroy cluster: Azure, Containerd, Kubernetes 1.30" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.30' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: Azure CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1312,6 +1327,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1490,14 +1510,13 @@ jobs: # run_containerd_automatic: name: "destroy cluster: Azure, Containerd, Kubernetes Automatic" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == 'Automatic' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: Azure CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1595,6 +1614,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" diff --git a/.github/workflows/e2e-abort-eks.yml b/.github/workflows/e2e-abort-eks.yml index 08450e3947..4e7ade2e30 100644 --- a/.github/workflows/e2e-abort-eks.yml +++ b/.github/workflows/e2e-abort-eks.yml @@ -75,14 +75,13 @@ jobs: # run_containerd_1_26: name: "destroy cluster: EKS, Containerd, Kubernetes 1.26" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.26' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: EKS CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -180,6 +179,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -357,14 +361,13 @@ jobs: # run_containerd_1_27: name: "destroy cluster: EKS, Containerd, Kubernetes 1.27" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.27' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: EKS CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -462,6 +465,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -639,14 +647,13 @@ jobs: # run_containerd_1_28: name: "destroy cluster: EKS, Containerd, Kubernetes 1.28" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.28' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: EKS CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -744,6 +751,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -921,14 +933,13 @@ jobs: # run_containerd_1_29: name: "destroy cluster: EKS, Containerd, Kubernetes 1.29" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.29' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: EKS CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1026,6 +1037,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1203,14 +1219,13 @@ jobs: # run_containerd_1_30: name: "destroy cluster: EKS, Containerd, Kubernetes 1.30" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.30' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: EKS CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1308,6 +1323,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1485,14 +1505,13 @@ jobs: # run_containerd_automatic: name: "destroy cluster: EKS, Containerd, Kubernetes Automatic" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == 'Automatic' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: EKS CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1590,6 +1609,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" diff --git a/.github/workflows/e2e-abort-gcp.yml b/.github/workflows/e2e-abort-gcp.yml index 8a239b278b..602bb2a4ee 100644 --- a/.github/workflows/e2e-abort-gcp.yml +++ b/.github/workflows/e2e-abort-gcp.yml @@ -75,14 +75,13 @@ jobs: # run_containerd_1_26: name: "destroy cluster: GCP, Containerd, Kubernetes 1.26" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.26' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: GCP CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -180,6 +179,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -352,14 +356,13 @@ jobs: # run_containerd_1_27: name: "destroy cluster: GCP, Containerd, Kubernetes 1.27" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.27' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: GCP CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -457,6 +460,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -629,14 +637,13 @@ jobs: # run_containerd_1_28: name: "destroy cluster: GCP, Containerd, Kubernetes 1.28" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.28' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: GCP CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -734,6 +741,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -906,14 +918,13 @@ jobs: # run_containerd_1_29: name: "destroy cluster: GCP, Containerd, Kubernetes 1.29" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.29' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: GCP CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1011,6 +1022,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1183,14 +1199,13 @@ jobs: # run_containerd_1_30: name: "destroy cluster: GCP, Containerd, Kubernetes 1.30" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.30' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: GCP CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1288,6 +1303,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1460,14 +1480,13 @@ jobs: # run_containerd_automatic: name: "destroy cluster: GCP, Containerd, Kubernetes Automatic" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == 'Automatic' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: GCP CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1565,6 +1584,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" diff --git a/.github/workflows/e2e-abort-openstack.yml b/.github/workflows/e2e-abort-openstack.yml index 96cfb8a916..986a707f95 100644 --- a/.github/workflows/e2e-abort-openstack.yml +++ b/.github/workflows/e2e-abort-openstack.yml @@ -75,14 +75,13 @@ jobs: # run_containerd_1_26: name: "destroy cluster: OpenStack, Containerd, Kubernetes 1.26" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.26' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: OpenStack CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -180,6 +179,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -352,14 +356,13 @@ jobs: # run_containerd_1_27: name: "destroy cluster: OpenStack, Containerd, Kubernetes 1.27" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.27' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: OpenStack CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -457,6 +460,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -629,14 +637,13 @@ jobs: # run_containerd_1_28: name: "destroy cluster: OpenStack, Containerd, Kubernetes 1.28" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.28' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: OpenStack CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -734,6 +741,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -906,14 +918,13 @@ jobs: # run_containerd_1_29: name: "destroy cluster: OpenStack, Containerd, Kubernetes 1.29" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.29' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: OpenStack CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1011,6 +1022,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1183,14 +1199,13 @@ jobs: # run_containerd_1_30: name: "destroy cluster: OpenStack, Containerd, Kubernetes 1.30" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.30' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: OpenStack CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1288,6 +1303,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1460,14 +1480,13 @@ jobs: # run_containerd_automatic: name: "destroy cluster: OpenStack, Containerd, Kubernetes Automatic" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == 'Automatic' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: OpenStack CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1565,6 +1584,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" diff --git a/.github/workflows/e2e-abort-static.yml b/.github/workflows/e2e-abort-static.yml index 6ec5e87da8..6728fbbcc2 100644 --- a/.github/workflows/e2e-abort-static.yml +++ b/.github/workflows/e2e-abort-static.yml @@ -75,14 +75,13 @@ jobs: # run_containerd_1_26: name: "destroy cluster: Static, Containerd, Kubernetes 1.26" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.26' && github.event.inputs.layout == 'Static' }} + if: false env: PROVIDER: Static CRI: Containerd LAYOUT: Static KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -180,6 +179,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -352,14 +356,13 @@ jobs: # run_containerd_1_27: name: "destroy cluster: Static, Containerd, Kubernetes 1.27" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.27' && github.event.inputs.layout == 'Static' }} + if: false env: PROVIDER: Static CRI: Containerd LAYOUT: Static KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -457,6 +460,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -629,14 +637,13 @@ jobs: # run_containerd_1_28: name: "destroy cluster: Static, Containerd, Kubernetes 1.28" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.28' && github.event.inputs.layout == 'Static' }} + if: false env: PROVIDER: Static CRI: Containerd LAYOUT: Static KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -734,6 +741,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -906,14 +918,13 @@ jobs: # run_containerd_1_29: name: "destroy cluster: Static, Containerd, Kubernetes 1.29" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.29' && github.event.inputs.layout == 'Static' }} + if: false env: PROVIDER: Static CRI: Containerd LAYOUT: Static KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1011,6 +1022,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1183,14 +1199,13 @@ jobs: # run_containerd_1_30: name: "destroy cluster: Static, Containerd, Kubernetes 1.30" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.30' && github.event.inputs.layout == 'Static' }} + if: false env: PROVIDER: Static CRI: Containerd LAYOUT: Static KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1288,6 +1303,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1460,14 +1480,13 @@ jobs: # run_containerd_automatic: name: "destroy cluster: Static, Containerd, Kubernetes Automatic" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == 'Automatic' && github.event.inputs.layout == 'Static' }} + if: false env: PROVIDER: Static CRI: Containerd LAYOUT: Static KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1565,6 +1584,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" diff --git a/.github/workflows/e2e-abort-vcd.yml b/.github/workflows/e2e-abort-vcd.yml index 0be9d2a583..6bc185eecd 100644 --- a/.github/workflows/e2e-abort-vcd.yml +++ b/.github/workflows/e2e-abort-vcd.yml @@ -75,14 +75,13 @@ jobs: # run_containerd_1_26: name: "destroy cluster: VCD, Containerd, Kubernetes 1.26" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.26' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: VCD CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -180,6 +179,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -360,14 +364,13 @@ jobs: # run_containerd_1_27: name: "destroy cluster: VCD, Containerd, Kubernetes 1.27" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.27' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: VCD CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -465,6 +468,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -645,14 +653,13 @@ jobs: # run_containerd_1_28: name: "destroy cluster: VCD, Containerd, Kubernetes 1.28" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.28' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: VCD CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -750,6 +757,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -930,14 +942,13 @@ jobs: # run_containerd_1_29: name: "destroy cluster: VCD, Containerd, Kubernetes 1.29" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.29' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: VCD CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1035,6 +1046,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1215,14 +1231,13 @@ jobs: # run_containerd_1_30: name: "destroy cluster: VCD, Containerd, Kubernetes 1.30" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.30' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: VCD CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1320,6 +1335,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1500,14 +1520,13 @@ jobs: # run_containerd_automatic: name: "destroy cluster: VCD, Containerd, Kubernetes Automatic" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == 'Automatic' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: VCD CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1605,6 +1624,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" diff --git a/.github/workflows/e2e-abort-vsphere.yml b/.github/workflows/e2e-abort-vsphere.yml index ded132f91e..59acdb61e8 100644 --- a/.github/workflows/e2e-abort-vsphere.yml +++ b/.github/workflows/e2e-abort-vsphere.yml @@ -75,14 +75,13 @@ jobs: # run_containerd_1_26: name: "destroy cluster: vSphere, Containerd, Kubernetes 1.26" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.26' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: vSphere CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-vsphere] steps: @@ -180,6 +179,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -354,14 +358,13 @@ jobs: # run_containerd_1_27: name: "destroy cluster: vSphere, Containerd, Kubernetes 1.27" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.27' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: vSphere CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-vsphere] steps: @@ -459,6 +462,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -633,14 +641,13 @@ jobs: # run_containerd_1_28: name: "destroy cluster: vSphere, Containerd, Kubernetes 1.28" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.28' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: vSphere CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-vsphere] steps: @@ -738,6 +745,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -912,14 +924,13 @@ jobs: # run_containerd_1_29: name: "destroy cluster: vSphere, Containerd, Kubernetes 1.29" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.29' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: vSphere CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-vsphere] steps: @@ -1017,6 +1028,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1191,14 +1207,13 @@ jobs: # run_containerd_1_30: name: "destroy cluster: vSphere, Containerd, Kubernetes 1.30" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.30' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: vSphere CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-vsphere] steps: @@ -1296,6 +1311,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1470,14 +1490,13 @@ jobs: # run_containerd_automatic: name: "destroy cluster: vSphere, Containerd, Kubernetes Automatic" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == 'Automatic' && github.event.inputs.layout == 'Standard' }} + if: false env: PROVIDER: vSphere CRI: Containerd LAYOUT: Standard KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-vsphere] steps: @@ -1575,6 +1594,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" diff --git a/.github/workflows/e2e-abort-yandex-cloud.yml b/.github/workflows/e2e-abort-yandex-cloud.yml index 5d2b35020a..d33152fc14 100644 --- a/.github/workflows/e2e-abort-yandex-cloud.yml +++ b/.github/workflows/e2e-abort-yandex-cloud.yml @@ -75,14 +75,13 @@ jobs: # run_containerd_1_26: name: "destroy cluster: Yandex.Cloud, Containerd, Kubernetes 1.26" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.26' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: Yandex.Cloud CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -180,6 +179,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -356,14 +360,13 @@ jobs: # run_containerd_1_27: name: "destroy cluster: Yandex.Cloud, Containerd, Kubernetes 1.27" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.27' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: Yandex.Cloud CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -461,6 +464,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -637,14 +645,13 @@ jobs: # run_containerd_1_28: name: "destroy cluster: Yandex.Cloud, Containerd, Kubernetes 1.28" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.28' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: Yandex.Cloud CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -742,6 +749,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -918,14 +930,13 @@ jobs: # run_containerd_1_29: name: "destroy cluster: Yandex.Cloud, Containerd, Kubernetes 1.29" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.29' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: Yandex.Cloud CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1023,6 +1034,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1199,14 +1215,13 @@ jobs: # run_containerd_1_30: name: "destroy cluster: Yandex.Cloud, Containerd, Kubernetes 1.30" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == '1.30' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: Yandex.Cloud CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1304,6 +1319,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" @@ -1480,14 +1500,13 @@ jobs: # run_containerd_automatic: name: "destroy cluster: Yandex.Cloud, Containerd, Kubernetes Automatic" - if: ${{ fromJson(inputs.test_config).cri == 'containerd' && github.event.inputs.k8s_version == 'Automatic' && github.event.inputs.layout == 'WithoutNAT' }} + if: false env: PROVIDER: Yandex.Cloud CRI: Containerd LAYOUT: WithoutNAT KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} - WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1585,6 +1604,11 @@ jobs: INSTALL_IMAGE_PATH: ${{ github.event.inputs.installer_image_path }} run: | # Create tmppath for test script. + echo "CASE2" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" TMP_DIR_PATH="/mnt/cloud-layouts/layouts/${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}-${DHCTL_PREFIX}" if [[ -d "${TMP_DIR_PATH}" ]] ; then echo "Temporary dir already exists: ${TMP_DIR_PATH}. ERROR!" diff --git a/.github/workflows/e2e-aws.yml b/.github/workflows/e2e-aws.yml index 07143e6ba5..4125c7f490 100644 --- a/.github/workflows/e2e-aws.yml +++ b/.github/workflows/e2e-aws.yml @@ -214,6 +214,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -319,6 +320,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -419,6 +426,7 @@ jobs: - name: "Run e2e test: AWS/Containerd/1.26" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: AWS CRI: Containerd @@ -690,6 +698,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -795,6 +804,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -895,6 +910,7 @@ jobs: - name: "Run e2e test: AWS/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: AWS CRI: Containerd @@ -1166,6 +1182,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1271,6 +1288,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1371,6 +1394,7 @@ jobs: - name: "Run e2e test: AWS/Containerd/1.28" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: AWS CRI: Containerd @@ -1642,6 +1666,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1747,6 +1772,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1847,6 +1878,7 @@ jobs: - name: "Run e2e test: AWS/Containerd/1.29" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: AWS CRI: Containerd @@ -2118,6 +2150,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2223,6 +2256,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2323,6 +2362,7 @@ jobs: - name: "Run e2e test: AWS/Containerd/1.30" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: AWS CRI: Containerd @@ -2594,6 +2634,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2699,6 +2740,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2799,6 +2846,7 @@ jobs: - name: "Run e2e test: AWS/Containerd/Automatic" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: AWS CRI: Containerd diff --git a/.github/workflows/e2e-azure.yml b/.github/workflows/e2e-azure.yml index 0ec324ed99..6ee8dc7b9a 100644 --- a/.github/workflows/e2e-azure.yml +++ b/.github/workflows/e2e-azure.yml @@ -214,6 +214,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -319,6 +320,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -419,6 +426,7 @@ jobs: - name: "Run e2e test: Azure/Containerd/1.26" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Azure CRI: Containerd @@ -698,6 +706,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -803,6 +812,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -903,6 +918,7 @@ jobs: - name: "Run e2e test: Azure/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Azure CRI: Containerd @@ -1182,6 +1198,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1287,6 +1304,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1387,6 +1410,7 @@ jobs: - name: "Run e2e test: Azure/Containerd/1.28" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Azure CRI: Containerd @@ -1666,6 +1690,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1771,6 +1796,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1871,6 +1902,7 @@ jobs: - name: "Run e2e test: Azure/Containerd/1.29" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Azure CRI: Containerd @@ -2150,6 +2182,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2255,6 +2288,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2355,6 +2394,7 @@ jobs: - name: "Run e2e test: Azure/Containerd/1.30" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Azure CRI: Containerd @@ -2634,6 +2674,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2739,6 +2780,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2839,6 +2886,7 @@ jobs: - name: "Run e2e test: Azure/Containerd/Automatic" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Azure CRI: Containerd diff --git a/.github/workflows/e2e-daily.yml b/.github/workflows/e2e-daily.yml index f831efa1e4..8816dd4fa3 100644 --- a/.github/workflows/e2e-daily.yml +++ b/.github/workflows/e2e-daily.yml @@ -151,6 +151,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -242,6 +243,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -342,6 +349,7 @@ jobs: - name: "Run e2e test: AWS/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: AWS CRI: Containerd @@ -598,6 +606,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -689,6 +698,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -789,6 +804,7 @@ jobs: - name: "Run e2e test: Azure/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Azure CRI: Containerd @@ -1053,6 +1069,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1144,6 +1161,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1244,6 +1267,7 @@ jobs: - name: "Run e2e test: GCP/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: GCP CRI: Containerd @@ -1496,6 +1520,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1587,6 +1612,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1687,6 +1718,7 @@ jobs: - name: "Run e2e test: Yandex.Cloud/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Yandex.Cloud CRI: Containerd @@ -1947,6 +1979,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2038,6 +2071,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2138,6 +2177,7 @@ jobs: - name: "Run e2e test: OpenStack/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: OpenStack CRI: Containerd @@ -2390,6 +2430,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-vsphere] steps: @@ -2481,6 +2522,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2581,6 +2628,7 @@ jobs: - name: "Run e2e test: vSphere/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: vSphere CRI: Containerd @@ -2837,6 +2885,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2928,6 +2977,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -3028,6 +3083,7 @@ jobs: - name: "Run e2e test: VCD/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: VCD CRI: Containerd @@ -3296,6 +3352,7 @@ jobs: LAYOUT: Static KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -3387,6 +3444,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -3487,6 +3550,7 @@ jobs: - name: "Run e2e test: Static/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Static CRI: Containerd diff --git a/.github/workflows/e2e-eks.yml b/.github/workflows/e2e-eks.yml index 0575b790d8..f5208143ab 100644 --- a/.github/workflows/e2e-eks.yml +++ b/.github/workflows/e2e-eks.yml @@ -214,6 +214,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -319,6 +320,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -425,6 +432,7 @@ jobs: - name: "Run e2e test: EKS/Containerd/1.26" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: EKS CRI: Containerd @@ -733,6 +741,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -838,6 +847,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -944,6 +959,7 @@ jobs: - name: "Run e2e test: EKS/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: EKS CRI: Containerd @@ -1252,6 +1268,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1357,6 +1374,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1463,6 +1486,7 @@ jobs: - name: "Run e2e test: EKS/Containerd/1.28" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: EKS CRI: Containerd @@ -1771,6 +1795,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1876,6 +1901,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1982,6 +2013,7 @@ jobs: - name: "Run e2e test: EKS/Containerd/1.29" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: EKS CRI: Containerd @@ -2290,6 +2322,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2395,6 +2428,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2501,6 +2540,7 @@ jobs: - name: "Run e2e test: EKS/Containerd/1.30" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: EKS CRI: Containerd @@ -2809,6 +2849,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2914,6 +2955,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -3020,6 +3067,7 @@ jobs: - name: "Run e2e test: EKS/Containerd/Automatic" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: EKS CRI: Containerd diff --git a/.github/workflows/e2e-gcp.yml b/.github/workflows/e2e-gcp.yml index 24e4b00575..48b725901e 100644 --- a/.github/workflows/e2e-gcp.yml +++ b/.github/workflows/e2e-gcp.yml @@ -214,6 +214,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -319,6 +320,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -419,6 +426,7 @@ jobs: - name: "Run e2e test: GCP/Containerd/1.26" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: GCP CRI: Containerd @@ -686,6 +694,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -791,6 +800,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -891,6 +906,7 @@ jobs: - name: "Run e2e test: GCP/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: GCP CRI: Containerd @@ -1158,6 +1174,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1263,6 +1280,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1363,6 +1386,7 @@ jobs: - name: "Run e2e test: GCP/Containerd/1.28" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: GCP CRI: Containerd @@ -1630,6 +1654,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1735,6 +1760,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1835,6 +1866,7 @@ jobs: - name: "Run e2e test: GCP/Containerd/1.29" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: GCP CRI: Containerd @@ -2102,6 +2134,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2207,6 +2240,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2307,6 +2346,7 @@ jobs: - name: "Run e2e test: GCP/Containerd/1.30" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: GCP CRI: Containerd @@ -2574,6 +2614,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2679,6 +2720,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2779,6 +2826,7 @@ jobs: - name: "Run e2e test: GCP/Containerd/Automatic" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: GCP CRI: Containerd diff --git a/.github/workflows/e2e-openstack.yml b/.github/workflows/e2e-openstack.yml index ecacbd36d9..06766363f5 100644 --- a/.github/workflows/e2e-openstack.yml +++ b/.github/workflows/e2e-openstack.yml @@ -214,6 +214,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -319,6 +320,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -419,6 +426,7 @@ jobs: - name: "Run e2e test: OpenStack/Containerd/1.26" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: OpenStack CRI: Containerd @@ -686,6 +694,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -791,6 +800,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -891,6 +906,7 @@ jobs: - name: "Run e2e test: OpenStack/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: OpenStack CRI: Containerd @@ -1158,6 +1174,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1263,6 +1280,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1363,6 +1386,7 @@ jobs: - name: "Run e2e test: OpenStack/Containerd/1.28" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: OpenStack CRI: Containerd @@ -1630,6 +1654,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1735,6 +1760,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1835,6 +1866,7 @@ jobs: - name: "Run e2e test: OpenStack/Containerd/1.29" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: OpenStack CRI: Containerd @@ -2102,6 +2134,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2207,6 +2240,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2307,6 +2346,7 @@ jobs: - name: "Run e2e test: OpenStack/Containerd/1.30" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: OpenStack CRI: Containerd @@ -2574,6 +2614,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2679,6 +2720,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2779,6 +2826,7 @@ jobs: - name: "Run e2e test: OpenStack/Containerd/Automatic" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: OpenStack CRI: Containerd diff --git a/.github/workflows/e2e-static.yml b/.github/workflows/e2e-static.yml index dcee9cf5f7..a08eb24d8c 100644 --- a/.github/workflows/e2e-static.yml +++ b/.github/workflows/e2e-static.yml @@ -214,6 +214,7 @@ jobs: LAYOUT: Static KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -319,6 +320,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -419,6 +426,7 @@ jobs: - name: "Run e2e test: Static/Containerd/1.26" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Static CRI: Containerd @@ -686,6 +694,7 @@ jobs: LAYOUT: Static KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -791,6 +800,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -891,6 +906,7 @@ jobs: - name: "Run e2e test: Static/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Static CRI: Containerd @@ -1158,6 +1174,7 @@ jobs: LAYOUT: Static KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1263,6 +1280,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1363,6 +1386,7 @@ jobs: - name: "Run e2e test: Static/Containerd/1.28" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Static CRI: Containerd @@ -1630,6 +1654,7 @@ jobs: LAYOUT: Static KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1735,6 +1760,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1835,6 +1866,7 @@ jobs: - name: "Run e2e test: Static/Containerd/1.29" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Static CRI: Containerd @@ -2102,6 +2134,7 @@ jobs: LAYOUT: Static KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2207,6 +2240,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2307,6 +2346,7 @@ jobs: - name: "Run e2e test: Static/Containerd/1.30" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Static CRI: Containerd @@ -2574,6 +2614,7 @@ jobs: LAYOUT: Static KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2679,6 +2720,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2779,6 +2826,7 @@ jobs: - name: "Run e2e test: Static/Containerd/Automatic" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Static CRI: Containerd diff --git a/.github/workflows/e2e-vcd.yml b/.github/workflows/e2e-vcd.yml index 2361404677..412543fb1f 100644 --- a/.github/workflows/e2e-vcd.yml +++ b/.github/workflows/e2e-vcd.yml @@ -214,6 +214,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -319,6 +320,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -419,6 +426,7 @@ jobs: - name: "Run e2e test: VCD/Containerd/1.26" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: VCD CRI: Containerd @@ -702,6 +710,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -807,6 +816,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -907,6 +922,7 @@ jobs: - name: "Run e2e test: VCD/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: VCD CRI: Containerd @@ -1190,6 +1206,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1295,6 +1312,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1395,6 +1418,7 @@ jobs: - name: "Run e2e test: VCD/Containerd/1.28" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: VCD CRI: Containerd @@ -1678,6 +1702,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1783,6 +1808,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1883,6 +1914,7 @@ jobs: - name: "Run e2e test: VCD/Containerd/1.29" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: VCD CRI: Containerd @@ -2166,6 +2198,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2271,6 +2304,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2371,6 +2410,7 @@ jobs: - name: "Run e2e test: VCD/Containerd/1.30" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: VCD CRI: Containerd @@ -2654,6 +2694,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2759,6 +2800,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2859,6 +2906,7 @@ jobs: - name: "Run e2e test: VCD/Containerd/Automatic" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: VCD CRI: Containerd diff --git a/.github/workflows/e2e-vsphere.yml b/.github/workflows/e2e-vsphere.yml index 256b0bcd85..13624e106f 100644 --- a/.github/workflows/e2e-vsphere.yml +++ b/.github/workflows/e2e-vsphere.yml @@ -214,6 +214,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-vsphere] steps: @@ -319,6 +320,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -419,6 +426,7 @@ jobs: - name: "Run e2e test: vSphere/Containerd/1.26" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: vSphere CRI: Containerd @@ -690,6 +698,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-vsphere] steps: @@ -795,6 +804,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -895,6 +910,7 @@ jobs: - name: "Run e2e test: vSphere/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: vSphere CRI: Containerd @@ -1166,6 +1182,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-vsphere] steps: @@ -1271,6 +1288,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1371,6 +1394,7 @@ jobs: - name: "Run e2e test: vSphere/Containerd/1.28" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: vSphere CRI: Containerd @@ -1642,6 +1666,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-vsphere] steps: @@ -1747,6 +1772,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1847,6 +1878,7 @@ jobs: - name: "Run e2e test: vSphere/Containerd/1.29" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: vSphere CRI: Containerd @@ -2118,6 +2150,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-vsphere] steps: @@ -2223,6 +2256,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2323,6 +2362,7 @@ jobs: - name: "Run e2e test: vSphere/Containerd/1.30" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: vSphere CRI: Containerd @@ -2594,6 +2634,7 @@ jobs: LAYOUT: Standard KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-vsphere] steps: @@ -2699,6 +2740,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2799,6 +2846,7 @@ jobs: - name: "Run e2e test: vSphere/Containerd/Automatic" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: vSphere CRI: Containerd diff --git a/.github/workflows/e2e-yandex-cloud.yml b/.github/workflows/e2e-yandex-cloud.yml index ebea4c3c1a..d76c2adda2 100644 --- a/.github/workflows/e2e-yandex-cloud.yml +++ b/.github/workflows/e2e-yandex-cloud.yml @@ -214,6 +214,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.26" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -319,6 +320,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -419,6 +426,7 @@ jobs: - name: "Run e2e test: Yandex.Cloud/Containerd/1.26" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Yandex.Cloud CRI: Containerd @@ -694,6 +702,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.27" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -799,6 +808,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -899,6 +914,7 @@ jobs: - name: "Run e2e test: Yandex.Cloud/Containerd/1.27" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Yandex.Cloud CRI: Containerd @@ -1174,6 +1190,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.28" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1279,6 +1296,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1379,6 +1402,7 @@ jobs: - name: "Run e2e test: Yandex.Cloud/Containerd/1.28" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Yandex.Cloud CRI: Containerd @@ -1654,6 +1678,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.29" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -1759,6 +1784,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -1859,6 +1890,7 @@ jobs: - name: "Run e2e test: Yandex.Cloud/Containerd/1.29" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Yandex.Cloud CRI: Containerd @@ -2134,6 +2166,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "1.30" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2239,6 +2272,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2339,6 +2378,7 @@ jobs: - name: "Run e2e test: Yandex.Cloud/Containerd/1.30" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Yandex.Cloud CRI: Containerd @@ -2614,6 +2654,7 @@ jobs: LAYOUT: WithoutNAT KUBERNETES_VERSION: "Automatic" EVENT_LABEL: ${{ github.event.label.name }} + WERF_ENV: "${{ fromJson(inputs.test_config).edition || 'FE'}}" runs-on: [self-hosted, e2e-common] steps: @@ -2719,6 +2760,12 @@ jobs: # GITHUB_RUN_ATTEMPT is a unique number for each attempt of a particular workflow run in a repository. # Add CRI and KUBERNETES_VERSION to create unique directory for each job. # CRI and PROVIDER values are trimmed to reduce prefix length. + echo "CASE1" + echo "INPUTS" + echo "CRI=${{ fromJson(inputs.test_config).cri }}" + echo "VER=${{ fromJson(inputs.test_config).ver }}" + echo "EDITION=${{ fromJson(inputs.test_config).edition }}" + if [[ "${KUBERNETES_VERSION}" == "Automatic" ]] ; then KUBERNETES_VERSION_SUF="auto" else @@ -2819,6 +2866,7 @@ jobs: - name: "Run e2e test: Yandex.Cloud/Containerd/Automatic" id: e2e_test_run timeout-minutes: 80 + if: false env: PROVIDER: Yandex.Cloud CRI: Containerd