Automated backport of #2651: Enable forwarding on the submariner interfaces #3876
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: End to End Full | |
on: | |
pull_request: | |
types: [labeled, opened, synchronize, reopened] | |
permissions: {} | |
jobs: | |
e2e: | |
name: E2E | |
if: contains(github.event.pull_request.labels.*.name, 'ready-to-test') | |
timeout-minutes: 45 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
deploytool: ['operator'] | |
external_net: [''] | |
globalnet: ['', 'globalnet'] | |
cable_driver: ['libreswan', 'wireguard', 'vxlan'] | |
ovn: ['', 'ovn'] | |
exclude: | |
- ovn: 'ovn' | |
globalnet: 'globalnet' | |
- ovn: 'ovn' | |
cable_driver: 'wireguard' | |
include: | |
- external_net: 'external-net' | |
- external_net: 'external-net' | |
globalnet: 'globalnet' | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 | |
- name: Run E2E deployment and tests | |
if: matrix.external_net != 'external-net' | |
uses: submariner-io/shipyard/gh-actions/[email protected] | |
with: | |
using: ${{ matrix.cable_driver }} ${{ matrix.deploytool }} ${{ matrix.globalnet }} ${{ matrix.ovn }} | |
- name: Run External Network E2E deployment and tests | |
if: matrix.external_net == 'external-net' | |
uses: submariner-io/shipyard/gh-actions/[email protected] | |
with: | |
using: ${{ matrix.external_net }} ${{ matrix.globalnet }} | |
skip: "" # Override skipping external network tests | |
plugin: scripts/e2e/external/hook | |
- name: Post mortem | |
if: failure() | |
uses: submariner-io/shipyard/gh-actions/[email protected] |