From 48f5838c35ce08f5662ad81dfd1152ebc6e9bb4f Mon Sep 17 00:00:00 2001 From: Salvatore Daniele Date: Tue, 29 Oct 2024 17:51:44 -0400 Subject: [PATCH] AssistedInstaller: pin AI pods to speed up deploy Some change to assisted installer causes it to increase from ~15 to ~1hour after starting a cluster for the cluster to reach state installing. As a temporary workaround, we can pin the pods to before this change was introduced. Signed-off-by: Salvatore Daniele --- assistedInstallerService.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assistedInstallerService.py b/assistedInstallerService.py index d790602e..43852cab 100644 --- a/assistedInstallerService.py +++ b/assistedInstallerService.py @@ -50,10 +50,10 @@ class AssistedInstallerService: # The values are taken from: # https://gitlab.cee.redhat.com/service/app-interface/-/blob/ee5f631ce539537085b5ef043bbd9593fa74f860/data/services/assisted-installer/cicd/target/production/assisted-service.yaml#L44-47 # - SAAS_VERSION = "latest" - INSTALLER_IMAGE = "registry.redhat.io/rhai-tech-preview/assisted-installer-rhel8:v1.0.0-347" - CONTROLLER_IMAGE = "registry.redhat.io/rhai-tech-preview/assisted-installer-reporter-rhel8:v1.0.0-425" - AGENT_DOCKER_IMAGE = "registry.redhat.io/rhai-tech-preview/assisted-installer-agent-rhel8:v1.0.0-328" + SAAS_VERSION = "v2.31.6" + INSTALLER_IMAGE = "registry.redhat.io/rhai-tech-preview/assisted-installer-rhel8:v1.0.0-340" + CONTROLLER_IMAGE = "registry.redhat.io/rhai-tech-preview/assisted-installer-reporter-rhel8:v1.0.0-418" + AGENT_DOCKER_IMAGE = "registry.redhat.io/rhai-tech-preview/assisted-installer-agent-rhel8:v1.0.0-315" def __init__(self, version: str, ip: str, proxy: Optional[str] = None, noproxy: Optional[str] = None, branch: str = "master"): self._version = version