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
bb845a71
Unverified
Commit
bb845a71
authored
Apr 12, 2019
by
Kubernetes Prow Robot
Committed by
GitHub
Apr 12, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #76498 from mm4tt/kubemark_fix
Fail start-kubemark.sh on master or hollow nodes set-up errors
parents
3088a3f2
17daab3a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
start-kubemark.sh
test/kubemark/start-kubemark.sh
+5
-1
No files found.
test/kubemark/start-kubemark.sh
View file @
bb845a71
...
@@ -494,6 +494,7 @@ function start-master {
...
@@ -494,6 +494,7 @@ function start-master {
start-master-components
start-master-components
}
}
start-master &
start-master &
start_master_pid
=
$!
# Setup for hollow-nodes.
# Setup for hollow-nodes.
function
start-hollow-nodes
{
function
start-hollow-nodes
{
...
@@ -503,8 +504,11 @@ function start-hollow-nodes {
...
@@ -503,8 +504,11 @@ function start-hollow-nodes {
wait-for-hollow-nodes-to-run-or-timeout
wait-for-hollow-nodes-to-run-or-timeout
}
}
start-hollow-nodes &
start-hollow-nodes &
start_hollow_nodes_pid
=
$!
wait
$start_master_pid
||
{
echo
"Failed to start kubemark master"
;
exit
1
;
}
wait
$start_hollow_nodes_pid
||{
echo
"Failed to start hollow nodes"
;
exit
1
;
}
wait
echo
""
echo
""
echo
"Master IP:
${
MASTER_IP
}
"
echo
"Master IP:
${
MASTER_IP
}
"
echo
"Password to kubemark master:
${
KUBE_PASSWORD
}
"
echo
"Password to kubemark master:
${
KUBE_PASSWORD
}
"
...
...
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