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

Add defaults subcommand to minikube config #8143

Merged
merged 5 commits into from
May 18, 2020

Commits on May 13, 2020

  1. Add defaults subcommand to minikube config

    `minikube config defaults PROPERTY_NAME` will print out all acceptable default values for that property.
    
    Currently only works for `minikube config defaults driver` which looks like this on Mac:
    
    ```
    $ minikube config defaults driver
    * virtualbox
    * parallels
    * vmwarefusion
    * hyperkit
    * vmware
    * docker
    * podman
    ```
    
    This will be useful for clients that depend on minikube, like IDE extensions.
    Priya Wadhwa committed May 13, 2020
    Configuration menu
    Copy the full SHA
    31525fe View commit details
    Browse the repository at this point in the history
  2. Add unit test

    Priya Wadhwa committed May 13, 2020
    Configuration menu
    Copy the full SHA
    208fb8a View commit details
    Browse the repository at this point in the history
  3. Add support for --output json

    Priya Wadhwa committed May 13, 2020
    Configuration menu
    Copy the full SHA
    b3d4750 View commit details
    Browse the repository at this point in the history
  4. Fix unit tests

    Priya Wadhwa committed May 13, 2020
    Configuration menu
    Copy the full SHA
    9501102 View commit details
    Browse the repository at this point in the history
  5. update docs

    Priya Wadhwa committed May 13, 2020
    Configuration menu
    Copy the full SHA
    bd08d04 View commit details
    Browse the repository at this point in the history