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
49db4f89
Commit
49db4f89
authored
Jun 08, 2016
by
k8s-merge-robot
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #26920 from mml/flake.unsched
Automatic merge from submit-queue Retain debug logs for etcd when there is a place to keep them.
parents
e7102b4f
5dcb8210
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
etcd.sh
hack/lib/etcd.sh
+7
-2
No files found.
hack/lib/etcd.sh
View file @
49db4f89
...
...
@@ -41,8 +41,13 @@ kube::etcd::start() {
# Start etcd
ETCD_DIR
=
$(
mktemp
-d
2>/dev/null
||
mktemp
-d
-t
test-etcd.XXXXXX
)
kube::log::info
"etcd -addr
${
ETCD_HOST
}
:
${
ETCD_PORT
}
-data-dir
${
ETCD_DIR
}
--bind-addr
${
ETCD_HOST
}
:
${
ETCD_PORT
}
>/dev/null 2>/dev/null"
etcd
-addr
${
ETCD_HOST
}
:
${
ETCD_PORT
}
-data-dir
${
ETCD_DIR
}
--bind-addr
${
ETCD_HOST
}
:
${
ETCD_PORT
}
>
/dev/null 2>/dev/null &
if
[[
-d
"
${
ARTIFACTS_DIR
:-}
"
]]
;
then
ETCD_LOGFILE
=
"
${
ARTIFACTS_DIR
}
/etcd.
$(
uname
-n
)
.
$(
id
-un
)
.log.DEBUG.
$(
date
+%Y%m%d-%H%M%S
)
.
$$
"
else
ETCD_LOGFILE
=
/dev/null
fi
kube::log::info
"etcd -addr
${
ETCD_HOST
}
:
${
ETCD_PORT
}
-data-dir
${
ETCD_DIR
}
--bind-addr
${
ETCD_HOST
}
:
${
ETCD_PORT
}
--debug >
\"
${
ETCD_LOGFILE
}
\"
2>/dev/null"
etcd
-addr
${
ETCD_HOST
}
:
${
ETCD_PORT
}
-data-dir
${
ETCD_DIR
}
--bind-addr
${
ETCD_HOST
}
:
${
ETCD_PORT
}
--debug
2>
"
${
ETCD_LOGFILE
}
"
>
/dev/null &
ETCD_PID
=
$!
echo
"Waiting for etcd to come up."
...
...
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