Skip to content
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

Don't use latest stable version for minikube #856

Merged

Commits on Jun 25, 2019

  1. Don't use latest stable version for minikube

    Sometimes, minikube lags behind kubernetes which can lead
    to a breakage of the test suite, since minikube will fail to start
    with the latest kubernetes version.
    See for example [this issue](kubernetes/minikube#4371).
    
    This change defaults to leave the decision of which k8s version to use,
    to minikube itself. This is defined in:
    
    https://github.com/kubernetes/minikube/master/pkg/minikube/constants/constants.go
    
    However, if one really desires it is still possible to pass
    
    `--kubernetes-version=X.Y.Z`
    
    to minikube initialization start command via an environment variable
    before invoking the test suite:
    
    export $MINIKUBE_ARGS="--kubernetes-version=X.Y.Z"
    
    This allows ofcourse passing other flags to minikube also.
    oz123 committed Jun 25, 2019
    Configuration menu
    Copy the full SHA
    d7300db View commit details
    Browse the repository at this point in the history