diff --git a/pkg/monitortests/testframework/disruptionexternalservicemonitoring/monitortest.go b/pkg/monitortests/testframework/disruptionexternalservicemonitoring/monitortest.go index 4bca5c7fe00a..ae38381a36d9 100644 --- a/pkg/monitortests/testframework/disruptionexternalservicemonitoring/monitortest.go +++ b/pkg/monitortests/testframework/disruptionexternalservicemonitoring/monitortest.go @@ -20,7 +20,7 @@ const ( newConnectionTestName = "[sig-trt] disruption/ci-cluster-network-liveness connection/new should be available throughout the test" reusedConnectionTestName = "[sig-trt] disruption/ci-cluster-network-liveness connection/reused should be available throughout the test" - externalServiceURL = "http://static.redhat.com/test/rhel-networkmanager.txt" + externalServiceURL = "https://static.redhat.com/test/rhel-networkmanager.txt" ) type availability struct { diff --git a/test/extended/machine_config/helpers.go b/test/extended/machine_config/helpers.go index 9962d3344f1b..8fbab43c6eb4 100644 --- a/test/extended/machine_config/helpers.go +++ b/test/extended/machine_config/helpers.go @@ -129,7 +129,7 @@ func IsTwoNodeArbiter(oc *exutil.CLI) bool { // `IsDisconnected` returns true if the cluster is a Disconnected cluster and false otherwise func IsDisconnected(oc *exutil.CLI, nodeName string) bool { - networkStatus, _ := exutil.DebugNodeRetryWithOptionsAndChroot(oc, nodeName, "openshift-machine-config-operator", "sh", "-c", "curl -s --connect-timeout 5 http://fedoraproject.org/static/hotspot.txt &>/dev/null && echo \"Connected\" || echo \"Disconnected\"") + networkStatus, _ := exutil.DebugNodeRetryWithOptionsAndChroot(oc, nodeName, "openshift-machine-config-operator", "sh", "-c", "curl -s --connect-timeout 5 https://fedoraproject.org/static/hotspot.txt &>/dev/null && echo \"Connected\" || echo \"Disconnected\"") if networkStatus == "Connected" { return false } diff --git a/test/extended/networking/egress_firewall.go b/test/extended/networking/egress_firewall.go index 86d5ece6ca7a..3e036461de29 100644 --- a/test/extended/networking/egress_firewall.go +++ b/test/extended/networking/egress_firewall.go @@ -183,7 +183,7 @@ func sendEgressFwTraffic(f *e2e.Framework, mgmtFw *e2e.Framework, oc *exutil.CLI // Test curl to www.redhat.com should fail // because we don't have allow dns rule for www.redhat.com g.By("sending traffic that does not match allow dns rule") - _, err = oc.Run("exec").Args(pod, "--", "curl", "-q", "-s", "-I", "-m5", "http://www.redhat.com").Output() + _, err = oc.Run("exec").Args(pod, "--", "curl", "-q", "-s", "-I", "-m5", "https://www.redhat.com").Output() expectError(err) if nodeSelectorSupport {