-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add release-specific OLM channels (#1403)
* Add release-specific OLM channels Signed-off-by: Michael Edgar <[email protected]> * fix: use post-release channel when generating new channel file Signed-off-by: Michael Edgar <[email protected]> * fix: add release channel to git index during preparation Signed-off-by: Michael Edgar <[email protected]> * fix: handle case where the release version differs from last snapshot Signed-off-by: Michael Edgar <[email protected]> --------- Signed-off-by: Michael Edgar <[email protected]>
- Loading branch information
Showing
3 changed files
with
69 additions
and
1 deletion.
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,7 @@ | ||
--- | ||
schema: olm.channel | ||
name: 0.5.x | ||
package: streamshub-console-operator | ||
properties: [] | ||
entries: | ||
- name: streamshub-console-operator.v0.5.0 |
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,12 @@ | ||
--- | ||
schema: olm.channel | ||
name: 0.6.x | ||
package: streamshub-console-operator | ||
properties: [] | ||
entries: | ||
- name: streamshub-console-operator.v0.6.0 | ||
replaces: streamshub-console-operator.v0.5.0 | ||
- name: streamshub-console-operator.v0.6.1 | ||
replaces: streamshub-console-operator.v0.6.0 | ||
- name: streamshub-console-operator.v0.6.2-snapshot | ||
replaces: streamshub-console-operator.v0.6.1 |