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
9d34fee5
Commit
9d34fee5
authored
Dec 12, 2017
by
Slava Semushin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hack/local-up-cluster.sh: improve messages when script was running with ENABLE_DAEMON=true
parent
51fbd6e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
local-up-cluster.sh
hack/local-up-cluster.sh
+10
-2
No files found.
hack/local-up-cluster.sh
View file @
9d34fee5
...
...
@@ -833,8 +833,12 @@ function create_storage_class {
function
print_success
{
if
[[
"
${
START_MODE
}
"
!=
"kubeletonly"
]]
;
then
if
[[
"
${
ENABLE_DAEMON
}
"
=
false
]]
;
then
echo
"Local Kubernetes cluster is running. Press Ctrl-C to shut it down."
else
echo
"Local Kubernetes cluster is running."
fi
cat
<<
EOF
Local Kubernetes cluster is running. Press Ctrl-C to shut it down.
Logs:
${
APISERVER_LOG
:-}
...
...
@@ -858,8 +862,12 @@ fi
if
[[
"
${
START_MODE
}
"
!=
"kubeletonly"
]]
;
then
echo
if
[[
"
${
ENABLE_DAEMON
}
"
=
false
]]
;
then
echo
"To start using your cluster, you can open up another terminal/tab and run:"
else
echo
"To start using your cluster, run:"
fi
cat
<<
EOF
To start using your cluster, you can open up another terminal/tab and run:
export KUBECONFIG=
${
CERT_DIR
}
/admin.kubeconfig
cluster/kubectl.sh
...
...
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