Skip to content

Commit fd88461

Browse files
committed
update failing tests
Signed-off-by: Anand Kumar Singh <[email protected]>
1 parent 39a381e commit fd88461

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/openshift/e2e/sequential/1-035_validate_argocd_secret_repopulate/05-argocd_login.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ commands:
44
- script: |
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)
7-
output=$(argocd login $api_server --username admin --password $password --insecure)
7+
output=$(argocd login $api_server --username admin --password $password --insecure --skip-test-tls)
88
99
if ! [[ "${output}" =~ "'admin:login' logged in successfully" ]]; then
1010
if [[ "${output}" == *"rpc error: code = Unknown desc = server.secretkey is missing" ]]; then

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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+
output=$(argocd login $api_server --username admin --password $password --insecure --skip-test-tls)
99
1010
if ! [[ "${output}" =~ "'admin:login' logged in successfully" ]]; then
1111
exit 1

0 commit comments

Comments
 (0)