Skip to content

Update Submariner dependencies to v0.19.0-rc2 #3613

Update Submariner dependencies to v0.19.0-rc2

Update Submariner dependencies to v0.19.0-rc2 #3613

Workflow file for this run

---
name: End to End
on:
pull_request:
types: [labeled, opened, synchronize, reopened]
permissions: {}
jobs:
images:
name: Images
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Build the images if necessary
uses: submariner-io/shipyard/gh-actions/cache-images@release-0.19
# Both E2E jobs have the same name; the default job is un-suffixed, the full jobs are suffixed with their matrix combination
e2e-default:
name: E2E
needs: images
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Run E2E deployment and tests
uses: submariner-io/shipyard/gh-actions/e2e@release-0.19
- name: Post mortem
if: failure()
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.19
e2e-full:
name: E2E
needs: images
if: contains(github.event.pull_request.labels.*.name, 'ready-to-test')
timeout-minutes: 60
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
deploytool: ['operator']
globalnet: ['', 'globalnet']
# Run most tests against the latest K8s version
k8s_version: ['1.29']
include:
# Oldest Kubernetes version thought to work with SubM's Service Discovery.
# If this breaks, we may advance the oldest-working K8s version instead of fixing it. See:
# https://submariner.io/development/building-testing/ci-maintenance/
- k8s_version: '1.21'
# Bottom of supported K8s version range
- k8s_version: '1.26'
steps:
- name: Check out the repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Run E2E deployment and tests
uses: submariner-io/shipyard/gh-actions/e2e@release-0.19
with:
k8s_version: ${{ matrix.k8s_version }}
using: ${{ matrix.deploytool }} ${{ matrix.globalnet }}
- name: Post mortem
if: failure()
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.19