Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
61db9771
Commit
61db9771
authored
Apr 08, 2016
by
Adam Reese
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #587 from adamreese/fix/kube-dns
fix(scripts): require docker 1.10.3
parents
d11dd488
f6e9dcc4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
kube-up.sh
scripts/kube-up.sh
+6
-1
No files found.
scripts/kube-up.sh
View file @
61db9771
...
...
@@ -51,6 +51,11 @@ verify_prereqs() {
if
!
docker info
>
/dev/null 2>&1
;
then
error_exit
"Can't connect to 'docker' daemon. please fix and retry."
fi
if
[[
!
$(
docker version
--format
{{
.Server.Version
}}
)
==
"1.10.3"
]]
;
then
error_exit
"docker version 1.10.3 is required"
fi
echo
"You are golden, carry on..."
}
...
...
@@ -117,7 +122,7 @@ wait_for_kubernetes() {
create_kube_system_namespace
()
{
echo
"Creating kube-system namespace..."
$KUBECTL
create
-f
"
${
HELM_ROOT
}
/scripts/cluster/kube-system.yaml"
||
:
$KUBECTL
create
-f
"
${
HELM_ROOT
}
/scripts/cluster/kube-system.yaml"
}
create_kube_dns
()
{
...
...
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