Skip to content

Commit

Permalink
Add rules for:
Browse files Browse the repository at this point in the history
- Out of disk space when writing to qcow2
- Hyperkit MTU assertion
- Too many connections in Vpnkit

Signed-off-by: Magnus Skjegstad <[email protected]>
  • Loading branch information
MagnusS committed Mar 13, 2017
1 parent f7a9369 commit 837829c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .nurse/problems/hyperkit-mtu-assertion.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"in_file": "docker-system.log",
"matches": ["Assertion failed: .remaining == 0 .. i < n., function vmn_read" ],
"description": "This error suggests that a Hyperkit assertion was triggered by an ethernet frame that was too big for the buffer. Upgrading to the latest release should fix the issue.",
"link_to_issues": [ [ "docker/for-mac", 1228 ] ]
}
6 changes: 6 additions & 0 deletions .nurse/problems/hyperkit-out-of-disk-space.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"in_file": "docker-system.log",
"matches": ["ftruncate. No space left on device in ftruncate" ],
"description": "[INVESTIGATE THE ISSUE]",
"link_to_issues": [ [ "docker/for-mac", 1365 ] ]
}
6 changes: 6 additions & 0 deletions .nurse/problems/vpnkit-too-many-connections.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"in_file": "docker-system.log",
"matches": ["exceeded maximum number of forwarded connections" ],
"description": "This error suggests that the maximum number of simultaneous connections has been reached. Increasing the value in the database key `com.docker.driver.amd64-linux/slirp/max-connections` as described in https://github.com/docker/for-mac/issues/1009#issuecomment-264874864 may help.",
"link_to_issues": [ [ "docker/for-mac", 1009 ] ]
}

0 comments on commit 837829c

Please sign in to comment.