- 27 Jun, 2015 9 commits
-
-
Tim Hockin authored
Example: a pod like the below should proxy port 53 TCP and UDP to the main DNS service. ``` apiVersion: v1 kind: Pod metadata: name: localhost-dns-proxy spec: containers: - name: proxy-udp image: gcr.io/google_containers/proxy-to-service:v1 args: [ "udp", "53", "kube-dns.default" ] ports: - name: udp protocol: UDP containerPort: 53 hostPort: 53 - name: proxy-tcp image: gcr.io/google_containers/proxy-to-service:v1 args: [ "tcp", "53", "kube-dns.default" ] ports: - name: tcp protocol: TCP containerPort: 53 hostPort: 53 ``` -
Robert Bailey authored
AWS: Use persistent disk on master
-
Robert Bailey authored
Hopefully make NodePort docs clearer
-
Robert Bailey authored
Make DNS not need its own token
-
Robert Bailey authored
updated kubernetes daemon man docs
-
Robert Bailey authored
Don't make kubelet systemd service depend on Docker
-
Robert Bailey authored
Returning api/errors from event/rest.go
-
Robert Bailey authored
Use runtime.Copier instead of hardcoding api.Scheme
-
Robert Bailey authored
Revert "Set resource limit for both heapster and influxdb container b…
-
- 26 Jun, 2015 31 commits
-
-
Robert Bailey authored
Ansible rework for Kubernetes cluster deployment
-
Dawn Chen authored
-
Robert Bailey authored
Replaced GKE/GCE with Google Container Engine/Google Compute Engine
-
nikhiljindal authored
-
RichieEscarez authored
Fixes #10354
-
Robert Bailey authored
Remove unused enable_node_monitoring
-
Robert Bailey authored
Detect if replicas have been defaulted in rolling-update and use old replica count
-
Mike Danese authored
These docs are not autogenerated. They are generated from specially formated markdown files that need to be updated when flags are changed but nobody knows about this so it is not enforced. Thus the man page generation is not useful. For the sake of having up to date docs up to date for v1, I am manually udating the markdown files and removing the md2man generation. After v1 we need to gen this man pages with the rest of our generated docs in a pre commit hook so that they are not able to become out of date. We can do this by converting our daemons to use cobra cmd like kubectl.
-
Clayton Coleman authored
Allow other schemes to be supported by etcd_helper.go runtime.Scheme.Copy() should be using the built in DeepCopy()
-
Robert Bailey authored
Release 0.20
-
Robert Bailey authored
remove --machines and related deprecated flags from code and docs
-
Robert Bailey authored
Adding IANA_SVC_NAME definition to docs/design/identifiers.md
-
Robert Bailey authored
Scrape latency stats from integration tests
-
Robert Bailey authored
Add --force to `kubectl update`
-
Robert Bailey authored
Updating the "invalid value" error message to include the list of valid values
-
Robert Bailey authored
Use ginkgo's new Skip()
-
Robert Bailey authored
Allowing for HTTPS Probes
-
Robert Bailey authored
Fix ubernetes shortlink in docs.
-
Justin Santa Barbara authored
-
Justin Santa Barbara authored
-
Justin Santa Barbara authored
If we're going to have a persistent disk on /mnt/master-pd, it seems risky sometimes to have /mnt be a mounted volume. A new consistent approach: we mount volumes under /mnt/<name>.
-
Justin Santa Barbara authored
-
Adam Sunderland authored
Signed-off-by:Adam Sunderland <iterion@gmail.com>
-
Justin Santa Barbara authored
Fixes #10379
-
Salvatore Dario Minonne authored
-
Brendan Burns authored
-
Brendan Burns authored
-
Brendan Burns authored
-
Maxwell Forbes authored
To add validation for service ports when defined as string
-
Quinton Hoole authored
-
Jeff Bean authored
The testing repo now had updated packages for kubernetes Also adding some options to rsync task to work with different users ssh settings
-