Joe Beda
648d91b55f
Merge pull request #1378 from andrewmichaelsmith/patch-1
...
The DO page now redirects you to the kelseyhightower page
2014-09-29 11:04:27 -07:00
KORNISTE
6462030a32
fix spelling : docs/getting-started-guides/vagrant.md
2014-09-28 00:54:35 +09:00
Brendan Burns
e8f3c3cb19
Fix a typo, add instructions for running make.
2014-09-26 14:52:03 -07:00
Tim Hockin
0e7728f38b
Merge pull request #1114 from derekwaynecarr/namespace_proposal
...
Proposal: Initial namespaces proposal
2014-09-25 21:02:51 -07:00
Clayton Coleman
4e56dafecc
Introduce some default log verbosity control
...
Move a lot of common error logging into better buckets:
glog.Errorf() - Always an error
glog.Warningf() - Something unexpected, but probably not an error
glog.V(0) - Generally useful for this to ALWAYS be visible
to an operator
* Programmer errors
* Logging extra info about a panic
* CLI argument handling
glog.V(1) - A reasonable default log level if you don't want
verbosity
* Information about config (listening on X, watching Y)
* Errors that repeat frequently that relate to conditions
that can be corrected (pod detected as unhealthy)
glog.V(2) - Useful steady state information about the service
* Logging HTTP requests and their exit code
* System state changing (killing pod)
* Controller state change events (starting pods)
* Scheduler log messages
glog.V(3) - Extended information about changes
* More info about system state changes
glog.V(4) - Debug level verbosity (for now)
* Logging in particularly thorny parts of code where
you may want to come back later and check it
2014-09-25 16:30:14 -04:00
derekwaynecarr
91c99e0a48
Initial namespaces proposal
2014-09-24 14:50:40 -05:00
Joe Beda
7743f33359
Merge pull request #1379 from runseb/vagrant
...
Modifications and improvements to the vagrant cluster README
2014-09-23 09:21:04 -07:00
Tim Hockin
70b74483c0
Add a doc on pod states
2014-09-23 08:40:17 -07:00
Sebastien Goasguen
826680353d
Modifications and improvements to the vagrant cluster README
2014-09-23 15:39:16 +02:00
Brendan Burns
0c2ea0bcf2
rev versions to 0.3
2014-09-22 14:54:33 -07:00
Brendan Burns
b569003738
rev. versions to 0.3
2014-09-22 14:53:47 -07:00
Andrew Smith
abc218aba3
Change etcd install from go get to binaries from releases
...
To address #1380 , current version of etcd on master is incompatible with current version of kubernetes on master
2014-09-19 15:53:19 +01:00
Andrew Smith
31b8b35859
The DO page now redirects you to the kelseyhightower page
2014-09-19 14:04:45 +01:00
Yves Junqueira
aab58c8033
Rudder has been renamed to Flannel. Update doc references.
...
See: 81dac46496
2014-09-19 00:36:54 +02:00
Eric Tune
1c3bbc8c72
Fix typos.
2014-09-18 14:21:00 -07:00
Eric Tune
1f904d26b0
Documentation for users on volumes (current state).
2014-09-18 14:11:50 -07:00
Jeff Mendoza
feae137047
Minor update to Azure getting started guide.
2014-09-18 10:57:39 -07:00
Joe Beda
a1071288ae
Fix up source install instructions for VSphere
...
I skip using `go get` as it downloads all of the dependencies. But since we are vendoring using godep without rewriting imports, this means we download a bunch of stuff we don't use. Instead, just clone the repo directly.
Fixes #1360 .
2014-09-18 09:09:49 -07:00
Yves Junqueira
21cb9d19c2
Local install: add link to Docker install instructions
2014-09-18 01:23:26 +02:00
brendandburns
3d5f04bfba
Update the CoreOS instructions
2014-09-17 14:37:57 -07:00
Tim Hockin
d6bb688997
Merge pull request #1216 from thockin/ident
...
Revisit identifiers spec
2014-09-16 16:44:14 -07:00
scollier
c846c2a634
adding ansible config
...
updating the fedora getting started guide
adding ansible config
removing old fedora.md
2014-09-12 18:18:23 -05:00
Tim Hockin
d4b6f7ab3c
Re-add namespaces
2014-09-11 17:43:15 -07:00
Max Forbes
bd196ea49c
Fix some readme and script bugs in examples (take 2).
...
v2: Resolve issues from comments, fix bugs in update-demo example, rename files for clarity, add turn-down steps.
v3: Add more set commands, clean up rest of env var checks.
2014-09-11 15:06:10 -07:00
Brian Grant
276df0bf2a
Misc. doc updates: Go setup, ssh reqd. on GCE, etcd reqd. for local, moved community links to wiki
2014-09-11 20:10:49 +00:00
Tim Hockin
1eeed78a38
Document auto-set names
2014-09-11 12:26:24 -07:00
Tim Hockin
1d9cff4a87
Make pods a case study in identifiers.md
2014-09-11 12:26:23 -07:00
Tim Hockin
b6eb7cc979
Simplify pod namespaces
2014-09-11 12:26:23 -07:00
Tim Hockin
1a21ffdd0a
Revisit identifiers spec
2014-09-11 12:26:23 -07:00
Joe Beda
769d3ad882
Revert "Fix some readme and script bugs in examples."
...
This reverts commit 42baed492b
.
2014-09-10 13:42:19 -07:00
Max Forbes
6a583ebcf5
Merge branch 'master' of github.com:GoogleCloudPlatform/kubernetes
2014-09-10 13:36:55 -07:00
Max Forbes
42baed492b
Fix some readme and script bugs in examples.
2014-09-10 13:34:36 -07:00
Pieter Noordhuis
63ac1dc213
Update vSphere getting started doc
2014-09-10 00:17:41 +00:00
Filipe Brandenburger
ec2a39e08e
Document Kubernetes Release Process
...
This documentation covers the proposed release process that will improve
support for versioning builds from tarball.
There's also a diagram to explain how versioning works in face of other
commits being merged in parallel and the quirks of intermediate versions
close to the release window.
Addresses Issue #1226 .
Signed-off-by: Filipe Brandenburger <filbranden@google.com >
2014-09-09 14:02:50 -07:00
Clayton Coleman
055c9d5ad2
Merge pull request #1215 from rajatchopra/ovsdoc
...
ovs networking document
2014-09-09 14:51:12 -04:00
brendandburns
d7f84aef82
refine links.
2014-09-08 21:14:09 -07:00
brendandburns
84edb60bcd
slight wording change
2014-09-08 21:12:56 -07:00
brendandburns
56c8f43f0c
update vagrant to point at the 0.2 release
2014-09-08 21:12:36 -07:00
brendandburns
9ad7618a73
Change directions to use a "stable" release.
2014-09-08 21:09:52 -07:00
Rajat Chopra
07d1c6ff44
ovs networking document
...
Update networking.md
2014-09-08 17:06:25 -07:00
derekwaynecarr
f42fcef620
Add explicit flag to use openvswitch
2014-09-08 15:31:22 -04:00
Clayton Coleman
c2072336d0
Merge pull request #891 from erictune/security_md
...
Access.md added.
2014-09-08 12:56:34 -04:00
Joe Beda
c588207639
Merge pull request #1169 from brendandburns/docs
...
Add documentation for client libraries
2014-09-08 09:28:51 -07:00
Eric Tune
224c29e51d
Removed file not ready to share.
2014-09-05 14:27:47 -07:00
Eric Tune
57ca9eefc8
Rename project to namespace and reference #1114 .
2014-09-05 13:59:15 -07:00
derekwaynecarr
7f75aae8ab
Improve vagrant hostname support across cluster
2014-09-05 16:39:39 -04:00
Yaron Rosenbaum
e7f7ac790d
Update azure.md
...
For this to run, VNET and SUBNET need to be set.
2014-09-04 14:36:01 +03:00
Brendan Burns
1dfef703c4
Add documentation for client libraries
2014-09-03 22:21:42 -07:00
CJ Cullen
4a2c3c8c87
Fixed some typos:
...
Changed "an unified" to "a unified"
Changed "a extra" to "an extra"
Changed "for each pod have" to "for each pod to have"
2014-09-03 14:03:33 -07:00
Tim Hockin
a762fb855a
Merge pull request #617 from johnwilkes/master
...
Add initial resources.md for discussion
2014-09-01 20:37:08 -07:00