- 19 Nov, 2014 16 commits
-
-
Daniel Smith authored
Improve kubectl "get" error message
-
Eric Tune authored
Make master take authenticator.Request interface instead of tokenfile
-
Eric Tune authored
Add image related events to kubelet.
-
Dawn Chen authored
-
Daniel Smith authored
fix typos
-
Haney Maxwell authored
Previous behavior: $ kubectl get hosts F1119 11:47:44.787154 29017 resource.go:111] no resource "hosts" has been defined
-
Jordan Liggitt authored
-
Daniel Smith authored
fix kubectl log completion
-
Brendan Burns authored
Fix etcd unpack by adding a explicit x flag.
-
Brendan Burns authored
-
Eric Paris authored
When kubectl started returning the right object it changed the template that needed to be used to get the name of the containers inside the pod.
-
Daniel Smith authored
Ensure that kubectl get works with downstream resources
-
uberj authored
-
Clayton Coleman authored
This fully encapsulates decisions about conversion within GetPrinter, which prevents users from accidentally not converting.
-
Clayton Coleman authored
-
Clayton Coleman authored
-
- 18 Nov, 2014 24 commits
-
-
Daniel Smith authored
Document v1beta2 fields
-
Daniel Smith authored
Fix typo in authorization doc
-
derekwaynecarr authored
-
Clayton Coleman authored
Refactor internal API for Pods to match v1beta3
-
Brian Grant authored
-
Eric Tune authored
Treat unset KUBERNETES_PROVIDER as gce.
-
Daniel Smith authored
Add descriptions to all v1beta1 API fields.
-
Daniel Smith authored
Update changelog for 0.5
-
Eric Tune authored
Should fix jenkins failure.
-
Daniel Smith authored
update code.goole.com/p/go.net to golang.org/x/net
-
Brian Grant authored
-
Tim Hockin authored
Remove iptables >1.4.11 specific functionality
-
Brendan Burns authored
Kubelet talks securely to apiserver
-
Brendan Burns authored
Update go-restful to get field description enhancement and anonymous struct fix
-
markturansky authored
-
Eric Tune authored
-
Eric Tune authored
-
Eric Tune authored
Configure apiserver to serve Securely on port 6443. Generate token for kubelets during master VM startup. Put token into file apiserver can get and another file the kubelets can get. Added e2e test.
-
Brendan Burns authored
Remove deprecated nsinit from the node definition.
-
Brendan Burns authored
-
Brendan Burns authored
Implements a credentialprovider library for use by DockerPuller.
-
Brendan Burns authored
-
Matt Moore authored
This change refactors the way Kubelet's DockerPuller handles the docker config credentials to utilize a new credentialprovider library. The credentialprovider library is based on several of the files from the Kubelet's dockertools directory, but supports a new pluggable model for retrieving a .dockercfg-compatible JSON blob with credentials. With this change, the Kubelet will lazily ask for the docker config from a set of DockerConfigProvider extensions each time it needs a credential. This change provides common implementations of DockerConfigProvider for: - "Default": load .dockercfg from disk - "Caching": wraps another provider in a cache that expires after a pre-specified lifetime. GCP-only: - "google-dockercfg": reads a .dockercfg from a GCE instance's metadata - "google-dockercfg-url": reads a .dockercfg from a URL specified in a GCE instance's metadata. - "google-container-registry": reads an access token from GCE metadata into a password field.
-
Brendan Burns authored
-