bump 4000
parent
50c5c9e062
commit
7f47904c49
|
@ -163,11 +163,6 @@ jobs:
|
||||||
SHELL: "/bin/bash" # To prevent https://github.com/kubernetes/minikube/issues/6643
|
SHELL: "/bin/bash" # To prevent https://github.com/kubernetes/minikube/issues/6643
|
||||||
runs-on: macos-10.15
|
runs-on: macos-10.15
|
||||||
steps:
|
steps:
|
||||||
- name: Install kubectl
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
brew install docker-machine docker
|
|
||||||
sudo docker –version
|
|
||||||
- name: Install kubectl
|
- name: Install kubectl
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
@ -179,6 +174,11 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
curl -LO https://github.com/medyagh/gopogh/releases/download/v0.1.23/gopogh-darwin-amd64
|
curl -LO https://github.com/medyagh/gopogh/releases/download/v0.1.23/gopogh-darwin-amd64
|
||||||
sudo install gopogh-darwin-amd64 /usr/local/bin/gopogh
|
sudo install gopogh-darwin-amd64 /usr/local/bin/gopogh
|
||||||
|
- name: Install docker
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
brew install docker-machine docker
|
||||||
|
sudo docker --version
|
||||||
- name: Download Binaries
|
- name: Download Binaries
|
||||||
uses: actions/download-artifact@v1
|
uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -217,7 +217,7 @@ func validateStartWithProxy(ctx context.Context, t *testing.T, profile string) {
|
||||||
|
|
||||||
// Use more memory so that we may reliably fit MySQL and nginx
|
// Use more memory so that we may reliably fit MySQL and nginx
|
||||||
// changing api server so later in soft start we verify it didn't change
|
// changing api server so later in soft start we verify it didn't change
|
||||||
startArgs := append([]string{"start", "-p", profile, "--memory=3800", fmt.Sprintf("--apiserver-port=%d", apiPortTest), "--wait=true"}, StartArgs()...)
|
startArgs := append([]string{"start", "-p", profile, "--memory=4000", fmt.Sprintf("--apiserver-port=%d", apiPortTest), "--wait=true"}, StartArgs()...)
|
||||||
c := exec.CommandContext(ctx, Target(), startArgs...)
|
c := exec.CommandContext(ctx, Target(), startArgs...)
|
||||||
env := os.Environ()
|
env := os.Environ()
|
||||||
env = append(env, fmt.Sprintf("HTTP_PROXY=%s", srv.Addr))
|
env = append(env, fmt.Sprintf("HTTP_PROXY=%s", srv.Addr))
|
||||||
|
|
Loading…
Reference in New Issue