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
23fddb3a
Commit
23fddb3a
authored
Apr 01, 2016
by
mikebrow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor edits to testing guide
Signed-off-by:
mikebrow
<
brownwm@us.ibm.com
>
parent
bf07a6f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
testing.md
docs/devel/testing.md
+6
-6
No files found.
docs/devel/testing.md
View file @
23fddb3a
...
...
@@ -32,11 +32,11 @@ Documentation for other releases can be found at
This assumes you already read the
[
development guide
](
development.md
)
to
install go, godeps, and configure your git client.
In order to send pull requests you need to make sure you changes pass
unit and integration tests.
Before sending pull requests you should at least make sure your changes have
passed both
unit and integration tests.
Kubernetes only merges pull requests when
e2e tests are passing, so it is often
a good idea to make sure these
work as well.
Kubernetes only merges pull requests when
unit, integration, and e2e tests are
passing, so it is often a good idea to make sure the e2e tests
work as well.
## Unit tests
...
...
@@ -155,13 +155,13 @@ Kubernetes includes a script to help install etcd on your machine.
# Option a) install inside kubernetes root
cd
kubernetes
hack/install-etcd.sh
# Installs in ./third_party/etcd
echo export
PATH
=
"
$PATH
:
$(
pwd
)
/third_party/etcd"
>>
.profile
# Add to PATH
echo export
PATH
=
"
$PATH
:
$(
pwd
)
/third_party/etcd"
>>
~/
.profile
# Add to PATH
# Option b) install manually
cd
kubernetes
grep
-E
"image.*etcd"
cluster/saltbase/etcd/etcd.manifest
# Find version
# Install that version using yum/apt-get/etc
echo export
PATH
=
"
$PATH
:<LOCATION>"
>>
.profile
# Add to PATH
echo export
PATH
=
"
$PATH
:<LOCATION>"
>>
~/
.profile
# Add to PATH
```
### Run integration tests
...
...
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