-
Notifications
You must be signed in to change notification settings - Fork 456
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: install kube-ovn with helm chart (#3599)
Signed-off-by: zhangzujian <[email protected]>
- Loading branch information
1 parent
83ca99d
commit 0323141
Showing
2 changed files
with
22 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1111,6 +1111,12 @@ jobs: | |
name: Chart Installation/Uninstallation Test | ||
needs: build-kube-ovn | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ssl: | ||
- "true" | ||
- "false" | ||
timeout-minutes: 30 | ||
steps: | ||
- uses: jlumbroso/[email protected] | ||
|
@@ -1148,6 +1154,8 @@ jobs: | |
sudo chown -R $(id -un). ~/.kube/ | ||
- name: Install Kube-OVN | ||
env: | ||
ENABLE_SSL: "${{ matrix.ssl }}" | ||
run: make kind-install-chart | ||
|
||
- name: Uninstall Kube-OVN | ||
|
@@ -1877,9 +1885,11 @@ jobs: | |
sudo chown -R $(id -un). ~/.kube/ | ||
- name: Install Kube-OVN | ||
run: | | ||
sudo ENABLE_SSL=${{ matrix.ssl }} ENABLE_BIND_LOCAL_IP=${{ matrix.bind-local }} \ | ||
make kind-install-${{ matrix.ip-family }} | ||
env: | ||
NET_STACK: "${{ matrix.ip-family }}" | ||
ENABLE_SSL: "${{ matrix.ssl }}" | ||
ENABLE_BIND_LOCAL_IP: "${{ matrix.bind-local }}" | ||
run: make kind-install-chart | ||
|
||
- name: Run E2E | ||
working-directory: ${{ env.E2E_DIR }} | ||
|
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