1. 26 2月, 2017 7 次提交
  2. 25 2月, 2017 13 次提交
    • A
      Use grep -i to check the ISO version · b644c393
      Andreas Kohn 提交于
      ```sh
      $ cat ~/.minikube/machines/minikube/config.json | grep ISO
      $ cat ~/.minikube/machines/minikube/config.json | grep -i ISO
              "Boot2DockerURL": "file:///Users/andreas/.minikube/cache/iso/minikube-v1.0.6.iso",
      ```
      b644c393
    • M
      Add bootlocal script as custom startup script · 2b7adb55
      Matt Rickard 提交于
      2b7adb55
    • D
      Merge pull request #1177 from mshahat/master · 45262e85
      dlorenc 提交于
      Minikube installation requirements
      45262e85
    • M
      Merge pull request #1178 from r2d4/mac-in-docker · 5b58902c
      Matt Rickard 提交于
      Cross compile mac binary with CGO in docker
      5b58902c
    • M
      Merge pull request #1179 from r2d4/deploy-addons-makefile · d7850a20
      Matt Rickard 提交于
      Rebuild assets on any change in deploy/addons
      d7850a20
    • M
      Merge pull request #1154 from r2d4/svc-tests · b26f0aa6
      Matt Rickard 提交于
      Refactor service package and add test coverage
      b26f0aa6
    • M
      Rebuild assets on any change in deploy/addons · 941cd51b
      Matt Rickard 提交于
      This makefile dependency is currently only on the folder, not the files
      within.  With this PR, the makefile will rebuild the assets when
      changes are made to deploy/addons
      941cd51b
    • M
      Cross compile mac binary with CGO in docker · d3b42780
      Matt Rickard 提交于
      d3b42780
    • M
      Merge pull request #1175 from endocode/dongsu/fix-race-ssh-tests · 27e0dac4
      Matt Rickard 提交于
      Fix data races in unit tests
      27e0dac4
    • M
      Minikube installation requirements · cd10791d
      Mohamed Shahat 提交于
      Adding internet connection to the list of installation requirements for
      initial minikube start. Ref: #1148
      cd10791d
    • D
      pkg: fix data race around KubeConfigFile · 4eb9e92d
      Dongsu Park 提交于
      TestSetupKubeConfig fails when running "go test --race", because of
      concurrent accesses from multiple goroutines.
      
      ```
      WARNING: DATA RACE
      Write at 0x00c4201cc4b8 by goroutine 16:
      k8s.io/minikube/pkg/minikube/kubeconfig.TestSetupKubeConfig.func1()
          k8s.io/minikube/pkg/minikube/kubeconfig/config_test.go:103 +0x23a
      testing.tRunner()
          /usr/local/golang/src/testing/testing.go:657 +0x107
      ```
      
      To fix that, convert KubeConfigFile to an atomic value that stores
      string. Callers should run helper functions, SetKubeConfigFile() and
      GetKubeConfigFile() instead of direct access to the value.
      4eb9e92d
    • D
      pkg: fix data race around CommandToOutput · 6cf5ba7a
      Dongsu Park 提交于
      TestGetLocalkubeStatus fails when running "go test --race", because of
      concurrent accesses from multiple goroutines.
      
      ```
      WARNING: DATA RACE
      Read at 0x00c420435378 by goroutine 43:
      k8s.io/minikube/pkg/minikube/tests.(*SSHServer).Start.func1.1()
          k8s.io/minikube/pkg/minikube/tests/ssh_mock.go:122 +0x389
      
      Previous write at 0x00c420435378 by goroutine 40:
      k8s.io/minikube/pkg/minikube/cluster.TestGetLocalkubeStatus()
          k8s.io/minikube/pkg/minikube/cluster/cluster_test.go:359 +0x540
      testing.tRunner()
          /usr/local/golang/src/testing/testing.go:657 +0x107
      ```
      
      To fix that, convert CommandToOutput to an atomic value that stores
      the map. Callers should run helper functions, SetCommandToOutput() and
      GetCommandToOutput() instead of direct access to the value.
      6cf5ba7a
    • D
      pkg: fix data race around HasASessionRequested · e22b268f
      Dongsu Park 提交于
      TestCreateSSHShell fails when running "go test --race", because of
      concurrent accesses from multiple goroutines.
      
      ```
      WARNING: DATA RACE
      Read at 0x00c42025b730 by goroutine 42:
      k8s.io/minikube/pkg/minikube/cluster.TestCreateSSHShell()
          k8s.io/minikube/pkg/minikube/cluster/cluster_test.go:523 +0x543
      testing.tRunner()
          /usr/local/golang/src/testing/testing.go:657 +0x107
      
      Previous write at 0x00c42025b730 by goroutine 49:
      k8s.io/minikube/pkg/minikube/tests.(*SSHServer).Start.func1.1()
          k8s.io/minikube/pkg/minikube/tests/ssh_mock.go:95 +0x743
      ```
      
      To fix that, convert HadASessionRequested to an atomic variable.
      Callers should run helper functions, SetSessionRequested() and
      IsSessionRequested() instead of direct access to the variable.
      e22b268f
  3. 24 2月, 2017 2 次提交
  4. 23 2月, 2017 12 次提交
  5. 22 2月, 2017 6 次提交