Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
medyagh committed Mar 16, 2021
1 parent e641476 commit d519e72
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkg/minikube/reason/known_issues.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,16 @@ var providerIssues = []match{
},

// Docker environment
{
Kind: Kind{
ID: "PR_DOCKER_IP_CONFLICT",
ExitCode: ExProviderError,
Advice: "Run: 'minikube delete --all' to clean up all the abandoned networks.",
Issues: []int{9605},
},
Regexp: re(`cannot find cgroup mount destination: unknown`),
GOOS: []string{"linux"},
},
{
Kind: Kind{
ID: "PR_DOCKER_CGROUP_MOUNT",
Expand Down Expand Up @@ -364,6 +374,18 @@ var providerIssues = []match{

// KVM hypervisor
{
Kind: Kind{
ID: "PR_KVM_CAPABILITIES",
ExitCode: ExProviderUnavailable,
Advice: "Your host does not support KVM virtualization. Ensure that qemu-kvm is installed, and run 'virt-host-validate' to debug the problem",
URL: "http://mikko.repolainen.fi/documents/virtualization-with-kvm",
Issues: []int{2991},
},
Regexp: re(`invalid argument: could not find capabilities for domaintype=kvm`),
GOOS: []string{"linux"},
},
{

Kind: Kind{
ID: "PR_KVM_USER_PERMISSION",
ExitCode: ExProviderPermission,
Expand Down

0 comments on commit d519e72

Please sign in to comment.