diff --git a/discovery-infra/test_infra/utils.py b/discovery-infra/test_infra/utils.py index c6b8e5cdc2c..a2541396368 100644 --- a/discovery-infra/test_infra/utils.py +++ b/discovery-infra/test_infra/utils.py @@ -517,7 +517,7 @@ def get_remote_assisted_service_url(oc, namespace, service, scheme): def get_local_assisted_service_url(profile, namespace, service, deploy_target): - if deploy_target in ["onprem", "podman-localhost"]: + if deploy_target in ["onprem"]: assisted_hostname_or_ip = os.environ["ASSISTED_SERVICE_HOST"] return f'http://{assisted_hostname_or_ip}:8090' elif deploy_target == "ocp": diff --git a/scripts/deploy_assisted_service.sh b/scripts/deploy_assisted_service.sh index bc0f6535976..a3606d0a859 100755 --- a/scripts/deploy_assisted_service.sh +++ b/scripts/deploy_assisted_service.sh @@ -17,7 +17,7 @@ export PUBLIC_CONTAINER_REGISTRIES=${PUBLIC_CONTAINER_REGISTRIES:-} mkdir -p build -if [ "${DEPLOY_TARGET}" == "onprem" ] || [ "${DEPLOY_TARGET}" == "podman-localhost" ]; then +if [ "${DEPLOY_TARGET}" == "onprem" ]; then if [ -n "$OPENSHIFT_INSTALL_RELEASE_IMAGE" ]; then sed -i "s|OPENSHIFT_INSTALL_RELEASE_IMAGE=.*|OPENSHIFT_INSTALL_RELEASE_IMAGE=${OPENSHIFT_INSTALL_RELEASE_IMAGE}|" assisted-service/onprem-environment fi