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
ae0989f9
Commit
ae0989f9
authored
May 01, 2015
by
Zach Loafman
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7650 from roberthbailey/validate-cluster
Don't exit abruptly if there aren't yet any minions right after the cluster is created.
parents
1a8845af
14c2fb11
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
validate-cluster.sh
cluster/validate-cluster.sh
+1
-1
No files found.
cluster/validate-cluster.sh
View file @
ae0989f9
...
@@ -31,7 +31,7 @@ trap 'rm -rf "${MINIONS_FILE}"' EXIT
...
@@ -31,7 +31,7 @@ trap 'rm -rf "${MINIONS_FILE}"' EXIT
attempt
=
0
attempt
=
0
while
true
;
do
while
true
;
do
"
${
KUBE_ROOT
}
/cluster/kubectl.sh"
get nodes
-o
template
-t
$'{{range.items}}{{.metadata.name}}
\n
{{end}}'
--api-version
=
v1beta3
>
"
${
MINIONS_FILE
}
"
"
${
KUBE_ROOT
}
/cluster/kubectl.sh"
get nodes
-o
template
-t
$'{{range.items}}{{.metadata.name}}
\n
{{end}}'
--api-version
=
v1beta3
>
"
${
MINIONS_FILE
}
"
found
=
$(
grep
-c
.
"
${
MINIONS_FILE
}
"
)
found
=
$(
grep
-c
.
"
${
MINIONS_FILE
}
"
)
||
true
if
[[
${
found
}
==
"
${
NUM_MINIONS
}
"
]]
;
then
if
[[
${
found
}
==
"
${
NUM_MINIONS
}
"
]]
;
then
break
break
else
else
...
...
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