k3s/contrib
Tim Hockin 745c2af792 Add a simple hostport-to-service proxy
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
```
2015-06-26 21:55:18 -07:00
..
ansible Changing CentOS install of master and nodes 2015-06-25 18:45:49 -07:00
completions/bash add "--force" flag to "kubectl update"; 2015-06-25 17:16:20 -07:00
for-demos Add a simple hostport-to-service proxy 2015-06-26 21:55:18 -07:00
for-tests Merge pull request #10070 from lavalamp/e2eProxyFix 2015-06-25 13:15:03 -07:00
git-sync remove ports.name 2015-06-01 11:37:03 -07:00
go2docker Add ga-beacon analytics to gendocs scripts 2015-05-15 18:56:38 -07:00
init/systemd Fix misspellings in documentation 2015-06-05 11:35:17 -04:00
logging s/gcloud preview docker/gcloud docker/ 2015-06-18 12:27:08 -07:00
mesos Merge pull request #9736 from sdminonne/bug_fix2 2015-06-25 19:37:04 -07:00
pod-master s/gcloud preview docker/gcloud docker/ 2015-06-18 12:27:08 -07:00
podex Add ga-beacon analytics to gendocs scripts 2015-05-15 18:56:38 -07:00
prometheus fix prometheus usage of kubectl proxy 2015-06-03 18:31:45 -07:00
recipes Fix misspellings in documentation 2015-06-05 11:35:17 -04:00
release-notes Add some more logic to clean up the release-notes generation. 2015-06-12 22:14:40 -07:00