Skip to content

Commit 42d709d

Browse files
author
Automated Release
committed
Update base image to use stable branch 'release-0.21'
Signed-off-by: Automated Release <[email protected]>
1 parent 9860106 commit 42d709d

File tree

11 files changed

+23
-23
lines changed

11 files changed

+23
-23
lines changed

.github/workflows/branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
name: PR targets branch
1212
runs-on: ubuntu-latest
1313
steps:
14-
- name: Check that the PR targets devel
15-
if: ${{ github.base_ref != 'devel' }}
14+
- name: Check that the PR targets release-0.21
15+
if: ${{ github.base_ref != 'release-0.21' }}
1616
run: exit 1

.github/workflows/e2e-all-k8s.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ jobs:
3434
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
3535

3636
- name: Run E2E deployment and tests
37-
uses: submariner-io/shipyard/gh-actions/e2e@devel
37+
uses: submariner-io/shipyard/gh-actions/e2e@release-0.21
3838
with:
3939
k8s_version: ${{ matrix.k8s_version }}
4040
using: ${{ matrix.globalnet }} ${{ matrix.lighthouse }} ${{ matrix.ovn }}
4141

4242
- name: Post mortem
4343
if: failure()
44-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
44+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.21

.github/workflows/e2e-full.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ jobs:
3434
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
3535

3636
- name: Run E2E deployment and tests
37-
uses: submariner-io/shipyard/gh-actions/e2e@devel
37+
uses: submariner-io/shipyard/gh-actions/e2e@release-0.21
3838
with:
3939
k8s_version: ${{ matrix.k8s_version }}
4040
using: ${{ matrix.globalnet }} ${{ matrix.lighthouse }} ${{ matrix.ovn }}
4141

4242
- name: Post mortem
4343
if: failure()
44-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
44+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.21

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
1919

2020
- name: Run E2E deployment and tests
21-
uses: submariner-io/shipyard/gh-actions/e2e@devel
21+
uses: submariner-io/shipyard/gh-actions/e2e@release-0.21
2222

2323
- name: Post mortem
2424
if: failure()
25-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
25+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.21

.github/workflows/flake_finder.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
3030

3131
- name: Run E2E deployment and tests
32-
uses: submariner-io/shipyard/gh-actions/e2e@devel
32+
uses: submariner-io/shipyard/gh-actions/e2e@release-0.21
3333
with:
3434
k8s_version: ${{ matrix.k8s_version }}
3535
using: ${{ matrix.cable_driver }} ${{ matrix.globalnet }} ${{ matrix.lighthouse }}
3636

3737
- name: Post mortem
3838
if: failure()
39-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
39+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.21
4040
upgrade-e2e:
4141
name: Latest Release to Latest Version
4242
if: github.repository_owner == 'submariner-io'
@@ -49,8 +49,8 @@ jobs:
4949
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
5050

5151
- name: Install an old cluster, upgrade it and check it
52-
uses: submariner-io/shipyard/gh-actions/upgrade-e2e@devel
52+
uses: submariner-io/shipyard/gh-actions/upgrade-e2e@release-0.21
5353

5454
- name: Post mortem
5555
if: failure()
56-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
56+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.21

.github/workflows/prometheus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ jobs:
4646
exit 1
4747
- name: Post mortem
4848
if: failure()
49-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
49+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.21

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
workflow_dispatch:
66
push:
77
branches:
8-
- devel
8+
- release-0.21
99
- release-*
1010

1111
permissions: {}
@@ -22,7 +22,7 @@ jobs:
2222
fetch-depth: 0
2323

2424
- name: Build and release new images
25-
uses: submariner-io/shipyard/gh-actions/release-images@devel
25+
uses: submariner-io/shipyard/gh-actions/release-images@release-0.21
2626
with:
2727
username: ${{ secrets.QUAY_USERNAME }}
2828
password: ${{ secrets.QUAY_PASSWORD }}

.github/workflows/report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Reporting
44
on:
55
push:
66
branches:
7-
- devel
7+
- release-0.21
88
- release-*
99

1010
permissions: {}

.github/workflows/system.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2121

2222
- name: Deploy the environment and run the tests
23-
uses: submariner-io/shipyard/gh-actions/e2e@devel
23+
uses: submariner-io/shipyard/gh-actions/e2e@release-0.21
2424
with:
2525
target: system-test
2626
using: ${{ matrix.globalnet }}
2727

2828
- name: Post mortem
2929
if: failure()
30-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
30+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.21

.github/workflows/upgrade-e2e.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ name: Upgrade
44
on:
55
pull_request:
66
types: [ready_for_review, opened, reopened, synchronize, converted_to_draft, labeled]
7-
branches: [devel]
7+
branches: [release-0.21]
88

99
permissions: {}
1010

1111
jobs:
1212
upgrade-e2e:
1313
name: Latest Release to Latest Version
14-
if: ${{ github.base_ref == 'devel' }}
14+
if: ${{ github.base_ref == 'release-0.21' }}
1515
&& (github.event.pull_request.draft == false || contains(github.event.pull_request.labels.*.name, 'test-draft'))
1616
timeout-minutes: 30
1717
runs-on: ubuntu-latest
@@ -22,8 +22,8 @@ jobs:
2222
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2323

2424
- name: Install an old cluster, upgrade it and check it
25-
uses: submariner-io/shipyard/gh-actions/upgrade-e2e@devel
25+
uses: submariner-io/shipyard/gh-actions/upgrade-e2e@release-0.21
2626

2727
- name: Post mortem
2828
if: failure()
29-
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
29+
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.21

0 commit comments

Comments
 (0)