Skip to content

Commit

Permalink
Fixed max user instances cmd for minikube setup (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-karpukhin authored and a-thaler committed Apr 11, 2019
1 parent 51c626b commit 0d61b9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kyma/cmd/provision/minikube/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ func addDevDomainsToEtcHosts(o *MinikubeOptions, s step.Step) error {
// Default value of 128 is not enough to perform “kubectl log -f” from pods, hence increased to 524288
func increaseFsInotifyMaxUserInstances(o *MinikubeOptions) error {
if o.VMDriver != vmDriverNone {
_, err := minikube.RunCmd(o.Verbose, "ssh", "--", "'sudo sysctl -w fs.inotify.max_user_instances=524288'")
_, err := minikube.RunCmd(o.Verbose, "ssh", "--", "sudo sysctl -w fs.inotify.max_user_instances=524288")
if err != nil {
return err
}
Expand Down

0 comments on commit 0d61b9d

Please sign in to comment.