forked from minio/operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the install-tackle script to handle installing the konveyor operator using OLM via provided bundle image. With this, we should be able to test...at a minimum ... that our operator installs as part of PR checks. Fixes minio#130 Signed-off-by: David Zager <david.j.zager@gmail.com>
- Loading branch information
Showing
5 changed files
with
124 additions
and
122 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
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: PR Checks | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- 'release-*.*' | ||
|
||
env: | ||
IMG: ttl.sh/konveyor-operator-${{ github.sha }}:1h | ||
BUNDLE_IMG: ttl.sh/konveyor-operator-bundle-${{ github.sha }}:1h | ||
|
||
jobs: | ||
check-title: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: konveyor/release-tools/cmd/verify-pr@main | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
build-operator: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: make docker-build docker-push | ||
|
||
build-bundle: | ||
needs: build-operator | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: make bundle bundle-build bundle-push | ||
|
||
operator-install: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: make start-minikube | ||
- run: OPERATOR_BUNDLE_IMAGE="${BUNDLE_IMG}" make install-tackle |
This file was deleted.
Oops, something went wrong.
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
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