-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Lock the bundle to OCP v4.10 (#125) * Fix the valid-subscription annotation (#127) * Expand support for OCP 4.11 (#130) * Changes for 4.12 (#134) * GHA checkout action v2 is deprecated (#135) The GitHub Actions checkout action v2 is deprecated and needs to move to version 3. * Implement changes for operator-sdk-1.26.0 testing (#137) * Implement changes for operator-sdk-1.26.0 testing Implement changes that allow testing validation via operator-sdk-1.26.0 without bumping the entire bundle generation process from operator-sdk-0.19.4 to post-operator-sdk-1.x. These are the same tests run for validation during product pipeline verification. * Adds test to verify building of the bundle image works. * Adds KinD deployment to allow executing scorecard checks. Related: STF-1252 * Simplify use of RELEASE_VERSION variable * maxOpenShiftVersion 4.12 in OLM properties (#138) * maxOpenShiftVersion 4.12 in OLM properties * Remove invalid line from properties.yaml --------- Co-authored-by: Leif Madsen <lmadsen@redhat.com> --------- Co-authored-by: Leif Madsen <lmadsen@redhat.com>
- Loading branch information
1 parent
7b6d580
commit 68808c3
Showing
6 changed files
with
89 additions
and
24 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
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
3 changes: 3 additions & 0 deletions
3
deploy/olm-catalog/smart-gateway-operator/metadata/properties.yaml
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,3 @@ | ||
properties: | ||
- type: olm.maxOpenShiftVersion | ||
value: "4.12" |
21 changes: 21 additions & 0 deletions
21
deploy/olm-catalog/smart-gateway-operator/tests/scorecard/config.yaml
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,21 @@ | ||
kind: Configuration | ||
apiversion: scorecard.operatorframework.io/v1alpha3 | ||
metadata: | ||
name: config | ||
stages: | ||
- parallel: true | ||
tests: | ||
- image: quay.io/operator-framework/scorecard-test:latest | ||
entrypoint: | ||
- scorecard-test | ||
- basic-check-spec | ||
labels: | ||
suite: basic | ||
test: basic-check-spec-test | ||
- image: quay.io/operator-framework/scorecard-test:latest | ||
entrypoint: | ||
- scorecard-test | ||
- olm-bundle-validation | ||
labels: | ||
suite: olm | ||
test: olm-bundle-validation-test |