Skip to content

Commit

Permalink
OSD clusters - add channel group to version if not stable channel (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
rnetser authored Nov 6, 2023
1 parent 23a218f commit f15a8b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openshift_cli_installer/libs/clusters/osd_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ def create_cluster(self):
try:
ocp_version = (
self.install_version
if self.channel_group != "candidate"
else f"{self.install_version}-candidate"
if self.channel_group == "stable"
else f"{self.install_version}-{self.channel_group}"
)
provision_osd_kwargs = {
"wait_for_ready": True,
Expand Down

0 comments on commit f15a8b2

Please sign in to comment.