Skip to content

Commit 132b46c

Browse files
committed
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 <[email protected]>
1 parent 0295820 commit 132b46c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

assistedInstallerService.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ class AssistedInstallerService:
5050
# The values are taken from:
5151
# https://gitlab.cee.redhat.com/service/app-interface/-/blob/ee5f631ce539537085b5ef043bbd9593fa74f860/data/services/assisted-installer/cicd/target/production/assisted-service.yaml#L44-47
5252
#
53-
SAAS_VERSION = "latest"
54-
INSTALLER_IMAGE = "registry.redhat.io/rhai-tech-preview/assisted-installer-rhel8:v1.0.0-347"
55-
CONTROLLER_IMAGE = "registry.redhat.io/rhai-tech-preview/assisted-installer-reporter-rhel8:v1.0.0-425"
56-
AGENT_DOCKER_IMAGE = "registry.redhat.io/rhai-tech-preview/assisted-installer-agent-rhel8:v1.0.0-328"
53+
SAAS_VERSION = "v2.31.6"
54+
INSTALLER_IMAGE = "registry.redhat.io/rhai-tech-preview/assisted-installer-rhel8:v1.0.0-340"
55+
CONTROLLER_IMAGE = "registry.redhat.io/rhai-tech-preview/assisted-installer-reporter-rhel8:v1.0.0-418"
56+
AGENT_DOCKER_IMAGE = "registry.redhat.io/rhai-tech-preview/assisted-installer-agent-rhel8:v1.0.0-315"
5757

5858
def __init__(self, version: str, ip: str, proxy: Optional[str] = None, noproxy: Optional[str] = None, branch: str = "master"):
5959
self._version = version

0 commit comments

Comments
 (0)