Skip to content

Commit a7eac08

Browse files
committed
Add '--skip-test-tls' to 1-040 as a workaround
Signed-off-by: Jonathan West <jonwest@redhat.com>
1 parent 27142bc commit a7eac08

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/openshift/e2e/sequential/1-040_validate_quoted_RBAC_group_names/01-login_argocd_api_server.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ commands:
55
api_server=$(oc get routes -n openshift-gitops --field-selector metadata.name=openshift-gitops-server -o jsonpath="{.items[*]['spec.host']}")
66
password=$(oc get secret openshift-gitops-cluster -n openshift-gitops -o jsonpath='{.data.admin\.password}' | base64 -d)
77
8-
output=$(argocd login $api_server --username admin --password $password --insecure)
8+
# '--skip-test-tls' parameter was added in Feb 2025, to work around OpenShift Routes not supporting HTTP2 by default, along with Argo CD upstream bugs https://github.com/argoproj/argo-cd/issues/21764, and https://github.com/argoproj/argo-cd/issues/20121
9+
# '--skip-test-tls' should be removed once we have resolved these issues.
10+
11+
output=$(argocd login $api_server --username admin --password $password --insecure --skip-test-tls)
912
1013
if ! [[ "${output}" =~ "'admin:login' logged in successfully" ]]; then
1114
exit 1

0 commit comments

Comments
 (0)