bump 4000

pull/8432/head
Medya Gh 2020-06-09 20:32:23 -07:00
parent 50c5c9e062
commit 7f47904c49
No known key found for this signature in database
GPG Key ID: 7CF7792C6DF3245C
2 changed files with 6 additions and 6 deletions

View File

@ -163,11 +163,6 @@ jobs:
SHELL: "/bin/bash" # To prevent https://github.com/kubernetes/minikube/issues/6643
runs-on: macos-10.15
steps:
- name: Install kubectl
shell: bash
run: |
brew install docker-machine docker
sudo docker version
- name: Install kubectl
shell: bash
run: |
@ -179,6 +174,11 @@ jobs:
run: |
curl -LO https://github.com/medyagh/gopogh/releases/download/v0.1.23/gopogh-darwin-amd64
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
uses: actions/download-artifact@v1
with:

View File

@ -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
// 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...)
env := os.Environ()
env = append(env, fmt.Sprintf("HTTP_PROXY=%s", srv.Addr))