Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
802bfc8f
Commit
802bfc8f
authored
Feb 26, 2016
by
Fabio Yeon
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #21391 from pmorie/num-nodes-default
Fix default for num-nodes in ginkgo-e2e.sh
parents
1460dcee
531d8452
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
ginkgo-e2e.sh
hack/ginkgo-e2e.sh
+1
-2
No files found.
hack/ginkgo-e2e.sh
View file @
802bfc8f
...
@@ -87,7 +87,6 @@ elif [[ ${GINKGO_PARALLEL} =~ ^[yY]$ ]]; then
...
@@ -87,7 +87,6 @@ elif [[ ${GINKGO_PARALLEL} =~ ^[yY]$ ]]; then
ginkgo_args+
=(
"--nodes=30"
)
# By default, set --nodes=30.
ginkgo_args+
=(
"--nodes=30"
)
# By default, set --nodes=30.
fi
fi
# The --host setting is used only when providing --auth_config
# The --host setting is used only when providing --auth_config
# If --kubeconfig is used, the host to use is retrieved from the .kubeconfig
# If --kubeconfig is used, the host to use is retrieved from the .kubeconfig
# file and the one provided with --host is ignored.
# file and the one provided with --host is ignored.
...
@@ -105,8 +104,8 @@ export PATH=$(dirname "${e2e_test}"):"${PATH}"
...
@@ -105,8 +104,8 @@ export PATH=$(dirname "${e2e_test}"):"${PATH}"
--cluster-tag
=
"
${
CLUSTER_ID
:-}
"
\
--cluster-tag
=
"
${
CLUSTER_ID
:-}
"
\
--repo-root
=
"
${
KUBE_VERSION_ROOT
}
"
\
--repo-root
=
"
${
KUBE_VERSION_ROOT
}
"
\
--node-instance-group
=
"
${
NODE_INSTANCE_GROUP
:-}
"
\
--node-instance-group
=
"
${
NODE_INSTANCE_GROUP
:-}
"
\
--num-nodes
=
"
${
NUM_NODES
:-}
"
\
--prefix
=
"
${
KUBE_GCE_INSTANCE_PREFIX
:-
e2e
}
"
\
--prefix
=
"
${
KUBE_GCE_INSTANCE_PREFIX
:-
e2e
}
"
\
${
NUM_NODES
:+
"--num-nodes=
${
NUM_NODES
}
"
}
\
${
E2E_CLEAN_START
:+
"--clean-start=true"
}
\
${
E2E_CLEAN_START
:+
"--clean-start=true"
}
\
${
E2E_MIN_STARTUP_PODS
:+
"--minStartupPods=
${
E2E_MIN_STARTUP_PODS
}
"
}
\
${
E2E_MIN_STARTUP_PODS
:+
"--minStartupPods=
${
E2E_MIN_STARTUP_PODS
}
"
}
\
${
E2E_REPORT_DIR
:+
"--report-dir=
${
E2E_REPORT_DIR
}
"
}
\
${
E2E_REPORT_DIR
:+
"--report-dir=
${
E2E_REPORT_DIR
}
"
}
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment