-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed for python3 with Fedora 25 Atomic #4185
Conversation
This is not the only required fix, but this does fix one of the many issues.
Can one of the admins verify this patch?
|
1 similar comment
Can one of the admins verify this patch?
|
bot, test pull request |
aos-ci-test |
[merge] |
Evaluated for openshift ansible merge up to c78f670 |
continuous-integration/openshift-jenkins/merge SUCCESS (https://ci.openshift.redhat.com/jenkins/job/merge_pull_request_openshift_ansible/385/) (Base Commit: ef68639) |
This is not the only required fix, but this does fix one of the many issues.
The route command fails
fatal: [master-3.example.com]: FAILED! => {
"changed": false,
"failed": true,
"invocation": {
"module_args": {
"admin_kubeconfig": "/tmp/openshift-logging-ansible-N3Dgbv/admin.kubeconfig",
"oc_bin": "/usr/local/bin/oc",
"openshift_logging_namespace": "logging"
},
"module_name": "openshift_logging_facts"
}
}
MSG:
There was an exception trying to run the command '/usr/local/bin/oc get routes -n logging --user=system:admin/master-example-com:8443 --config=/tmp/openshift-logging-ansible-N3Dgbv/admin.kubeconfig -o json -l component=support, logging-infra=support, provider=openshift'
When you try this command from the command line the error is as follows
/usr/local/bin/oc get routes -n logging config -o json -l component=support, logging-infra=support, provider=openshift
error: the provided selector "component=support," is not valid: found '', expected: identifier after ','
Removing the spaces resolves the issue.
/usr/local/bin/oc get routes -n logging -o json -l component=support,logging-infra=support,provider=openshift