-
Notifications
You must be signed in to change notification settings - Fork 56
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
Fix Dockerfile #14
Fix Dockerfile #14
Conversation
@bison: The following tests failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
/lgtm |
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: bison, enxebre, spangenberg If they are not already assigned, you can assign the PR to them by writing The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Fix the misspelling from cd386e4 (Always log errors creating machines and volumes, 2018-09-12, openshift#14). I also like to downcase these to conform to [1], although as discussed there that's not required for logs. But in this commit I've left it for consistency with the package's other logs: $ sudo crictl logs --tail 5 06c3b913cf5e2 I0923 05:25:10.018081 1 controller.go:123] reconciling machine object worker-f55vm triggers idempotent create. I0923 05:25:10.022519 1 actuator.go:46] Creating machine "worker-f55vm" for cluster "trking-01e8e". I0923 05:25:10.032481 1 logs.go:41] [INFO] Created libvirt client I0923 05:25:10.032512 1 logs.go:41] [DEBUG] Create a libvirt volume with name worker-f55vm for pool default from the base volume /var/lib/libvirt/images/coreos_base E0923 05:25:10.040398 1 actuator.go:50] Coud not create libvirt machine: error creating volume: Can't retrieve volume /var/lib/libvirt/images/coreos_base [1]: https://github.com/golang/go/wiki/CodeReviewComments#error-strings Reported-by: Matt Rogers <[email protected]>
I had trouble running the Docker image because the libvirt libraries were missing. This adds them, and always logs errors in the
Create()
call.