Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(web_install): always use scylla as product #9995

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions sdcm/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -2123,10 +2123,9 @@ def web_install_scylla(self, scylla_version: Optional[str] = None) -> None:
https://github.com/scylladb/scylla-web-install
"""
is_enterprise, version = assume_version(self.parent_cluster.params, scylla_version)
product_type = '--scylla-product scylla-enterprise' if is_enterprise else ''
version = assume_version(self.parent_cluster.params, scylla_version)
self.remoter.run(
f"curl -sSf get.scylladb.com/server | sudo bash -s -- --scylla-version {version} {product_type}")
f"curl -sSf get.scylladb.com/server | sudo bash -s -- --scylla-version {version}")

def install_scylla_debuginfo(self) -> None:
if self.distro.is_rhel_like or self.distro.is_sles:
Expand Down