1. 17 10月, 2020 1 次提交
  2. 14 10月, 2020 1 次提交
  3. 07 10月, 2020 1 次提交
  4. 03 10月, 2020 1 次提交
  5. 24 9月, 2020 1 次提交
  6. 22 9月, 2020 2 次提交
  7. 17 9月, 2020 1 次提交
  8. 04 9月, 2020 1 次提交
  9. 02 9月, 2020 1 次提交
  10. 21 8月, 2020 2 次提交
  11. 20 8月, 2020 2 次提交
    • L
      fix typo miniube · 906bcb9c
      Li Zhijian 提交于
      $ sed -i 's/miniube start/minikube start/g' $(git grep -l 'miniube start')
      
      Fixes: #9018
      Signed-off-by: NLi Zhijian <lizhijian@cn.fujitsu.com>
      906bcb9c
    • P
      Make sure 'minikube status' displays InsufficientStorage for cluster and nodes · 3dba9745
      Priya Wadhwa 提交于
      if there is insufficient storage. Output now looks like:
      
      ```
      {
        "Name": "minikube",
        "StatusCode": 507,
        "StatusName": "InsufficientStorage",
        "StatusDetail": "/var is almost out of disk space",
        "Step": "Starting Node",
        "StepDetail": "Updating the running docker \"minikube\" container ...",
        "BinaryVersion": "v1.12.3",
        "Components": {
          "kubeconfig": {
            "Name": "kubeconfig",
            "StatusCode": 500,
            "StatusName": ""
          }
        },
        "Nodes": [
          {
            "Name": "minikube",
            "StatusCode": 507,
            "StatusName": "InsufficientStorage",
            "Components": {
              "apiserver": {
                "Name": "apiserver",
                "StatusCode": 405,
                "StatusName": "Stopped"
              },
              "kubelet": {
                "Name": "kubelet",
                "StatusCode": 405,
                "StatusName": "Stopped"
              }
            }
          }
        ]
      }
      ```
      3dba9745
  12. 13 8月, 2020 2 次提交
  13. 11 8月, 2020 1 次提交
  14. 10 8月, 2020 1 次提交
  15. 05 8月, 2020 1 次提交
  16. 04 8月, 2020 2 次提交
  17. 29 7月, 2020 1 次提交
  18. 28 7月, 2020 2 次提交
  19. 24 7月, 2020 2 次提交
  20. 22 7月, 2020 1 次提交
    • S
      Automated GCP Credentials Addon Prototype (#8682) · 1b6eee67
      Sharif Elgamal 提交于
      * metadata addon works
      
      * Add code for metadata server image and makefile rules
      
      * remove log message
      
      * update to work with v1.13.11
      
      * update readme
      
      * fix metadata addon stuff for newer codebase
      
      * buncha changes
      
      * just so many changes
      
      * ch-ch-ch-ch-changes
      
      * addon works
      
      * update readme
      
      * boilerplate
      
      * revert unrelated change
      
      * move server code to another repo
      
      * switch addon name to gcp-auth
      
      * metadata -> gcp-auth
      
      * missed one
      
      * automate finding of credentials
      
      * remove unnecessary comment
      
      * address comments
      
      * Update README.md
      
      * Update README.md
      
      * use mustload everywhere
      
      * swap selector condition
      
      * upgrade kube-webhook-certgen to 1.3
      
      * move paths to constants
      
      * add notice to user on addon enable
      
      * adding addon documentation
      
      * move addons documentation inside handbook
      
      * remove old addons docs location
      Co-authored-by: NPriya Wadhwa <priyawadhwa@google.com>
      1b6eee67
  21. 21 7月, 2020 2 次提交
  22. 18 7月, 2020 1 次提交
  23. 15 7月, 2020 1 次提交
  24. 07 7月, 2020 2 次提交
  25. 01 7月, 2020 1 次提交
  26. 10 6月, 2020 5 次提交
  27. 09 6月, 2020 1 次提交
    • P
      Set leader-elect=false for scheduler and controller manager · 5e1966ea
      Priya Wadhwa 提交于
      both the scheduler and controller manager constantly ping the apiserver to ensure leader election. From the docs:
      
      ```
      Enable this when running replicated components for high availability.
      ```
      
      which we don't really need in minikube. This should reduce overall overhead by ~12%
      5e1966ea