1. 19 1月, 2019 1 次提交
  2. 18 1月, 2019 1 次提交
  3. 17 1月, 2019 2 次提交
  4. 09 1月, 2019 1 次提交
  5. 03 1月, 2019 1 次提交
    • M
      Do not include the default CNI config by default · d982c4bf
      Martynas Pumputis 提交于
      Previously, minikube has been shipped with the default CNI config
      (/etc/cni/net.d/k8s.conf) in its rootfs. This complicated a lot
      when using a custom CNI plugin, as the default config was picked
      by kubelet before the custom CNI plugin has installed its own CNI
      config. So, the end result was that some Pods were attached to a
      network defined in the default config, and some got managed by
      the custom plugin.
      
      This commit introduces the flag "--enable-default-cni" to
      "minikube start" to trigger the provisioning of the default CNI
      config.
      Signed-off-by: NMartynas Pumputis <m@lambda.lt>
      d982c4bf
  6. 22 12月, 2018 2 次提交
  7. 21 12月, 2018 2 次提交
  8. 20 12月, 2018 3 次提交
  9. 12 12月, 2018 1 次提交
    • P
      Change restart policy on gvisor pod (#3445) · 1514511b
      priyawadhwa 提交于
      * Change restart policy on gvisor pod
      
      Change the restart policy on the gvisor pod to Always. This way, if a
      user runs
      
      minikube addons enable gvisor
      minikube stop
      minikube start
      
      when the addon manager tries to restart the gvisor pod, it will be
      restarted and gvisor will start running automatically. This PR also adds an
      integration test for this functionality.
      
      * Test stop and start
      
      * Revert test to delete
      
      Revert test to delete for now, for some reason "stop" and then "start"
      is failing both locally and in Jenkins for VirtualBox with a "panic test
      timed out after 30 min" error
      1514511b
  10. 08 12月, 2018 1 次提交
    • P
      Enable gvisor addon in minikube (#3399) · 8f128a7d
      priyawadhwa 提交于
      This PR adds the code for enabling gvisor in minikube. It adds the pod
      that will run when the addon is enabled, and the code for the image
      which will run when this happens.
      
      When gvisor is enabled, the pod will download runsc and the
      gvisor-containerd-shim. It will replace the containerd config.toml and
      restart containerd.
      
      When gvisor is disabled, the pod will be deleted by the addon manager.
      This will trigger a pre-stop hook which will revert the config.toml to
      it's original state and restart containerd.
      8f128a7d
  11. 06 12月, 2018 2 次提交
  12. 05 12月, 2018 1 次提交
  13. 28 11月, 2018 2 次提交
  14. 27 11月, 2018 1 次提交
    • B
      debugging improvements and flakiness reduction (#3363) · 4b11d63d
      Balint Pato 提交于
      Small improvements to debugging and reducing integration test flakiness: 
      * added logging to kubeadm init in the SSHExecutor
      * increasing timeout for RBAC creation via the kubernetes client set 
      * only log tunnel output to test logger
      4b11d63d
  15. 22 11月, 2018 1 次提交
    • B
      Fix `minikube tunnel` for hyperkit (#3349) · a681603d
      Balint Pato 提交于
      This change is a bit of a hack to make IP routing work over the virtio-net interface - it forces the virtio-net interface (bridge100) created by hyperkit/xhyve to reset via removing and readding the single member of the interface. Without this "reset" packets are just simply lost most of the time, despite a completely healthy IP route.
      
      This error was also the reason for a large percentage of our integration test failures. While reducing the flakiness of tunnel related tests I also increased the timeout requirement and adding retries to the nginx request in TestTunnel.
      a681603d
  16. 14 11月, 2018 1 次提交
  17. 08 11月, 2018 3 次提交
  18. 20 10月, 2018 3 次提交
  19. 19 10月, 2018 1 次提交
    • B
      minikube tunnel (#3015) · ae9f4b20
      Balint Pato 提交于
      This commit introduces a new command, `minikube tunnel`, a LoadBalancer emulator functionality, that must be run with root permissions.
      
      This command:
      
      * Establishes networking routes from the host into the VM for all IP ranges used by Kubernetes.
      * Enables a cluster controller that allocates IPs to services external `LoadBalancer` IPs.
      * Cleans up routes and IPs when stopped (Ctrl+C), when `minikube` stops, and when `minikube tunnel` is ran with the `--cleanup` flag
      ae9f4b20
  20. 18 10月, 2018 1 次提交
    • T
      Disable mount tests in Darwin to workaround panic: timedout bug · f20bf4d3
      Thomas Stromberg 提交于
      These tests reliably cause a "panic: timed out" condition due to
      hitherto unknown reasons. See issue #3200 for context.
      
      dlorenc mentioned that this test never worked, so when I re-enabled it
      recently for all platforms in af61bf79,
      it introduced a persistent test failure for darwin.
      
      I'll leave issue #3200 open until we are able to re-enable this test.
      f20bf4d3
  21. 06 10月, 2018 2 次提交
  22. 05 10月, 2018 1 次提交
    • F
      Enhance the Ingress Controller Addon (#3099) · 2ebdf5e1
      Fernando Diaz 提交于
      - Updates Ingress-Controller Version to 0.19.0
      - Adds Service Account for Ingress-Controller
      - Adds Support for Prometheus
      - Fixes bug with TCP/UDP ConfigMaps not Loading
      - Adds more resource limits to default-backend
      - Use new ingress class name
      - Use app.kubernetes.io/xxxxxxxxxxx labels
      2ebdf5e1
  23. 04 10月, 2018 3 次提交
  24. 03 10月, 2018 1 次提交
  25. 29 9月, 2018 2 次提交