Skip to content

Commit

Permalink
feature(sct-runner): version 1.9 with java 21.0.5
Browse files Browse the repository at this point in the history
cause of issue cause by missmatch of java version between
master and sct builder, we are building a new sct runner image
that has up-to-date java version

Ref: scylladb#9444
  • Loading branch information
fruch committed Dec 18, 2024
1 parent bb016d1 commit f8dc06f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdcm/sct_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def terminate(self) -> None:

class SctRunner(ABC):
"""Provision and configure the SCT runner."""
VERSION = "1.8" # Version of the Image
VERSION = "1.9" # Version of the Image
NODE_TYPE = "sct-runner"
RUNNER_NAME = "SCT-Runner"
LOGIN_USER = "ubuntu"
Expand Down
2 changes: 1 addition & 1 deletion sdcm/utils/aws_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def update_launch_template_if_needed(self, runner):
**launch_template_data
)
version_number = res.get('LaunchTemplateVersion', {}).get('VersionNumber')
self.region.client.modify_launch_template(LaunchTemplateName="aws-sct-builders",
self.region.client.modify_launch_template(LaunchTemplateName=self.launch_template_name,
DefaultVersion=str(version_number))
except botocore.exceptions.ClientError as error:
LOGGER.debug(error.response)
Expand Down

0 comments on commit f8dc06f

Please sign in to comment.