[kube-registry-proxy] expose on localhost only (#8238)

* [kube-registry-proxy] expose on localhost only

Signed-off-by: Tatsuyuki Ishi <ishitatsuyuki@gmail.com>

* Remove inactive maintainer

Signed-off-by: Tatsuyuki Ishi <ishitatsuyuki@gmail.com>
This commit is contained in:
Tatsuyuki Ishi
2018-10-14 14:12:20 -07:00
committed by k8s-ci-robot
parent 73d4c1c317
commit 1a7882e3e3
3 changed files with 11 additions and 11 deletions
+1 -4
View File
@@ -1,8 +1,5 @@
name: kube-registry-proxy
home: https://github.com/kubernetes/kubernetes/tree/master/cluster/addons/registry
version: 0.2.2
version: 0.3.0
appVersion: 0.4
description: Installs the kubernetes-registry-proxy cluster addon.
maintainers:
- name: Deis Team
email: engineering@deis.com
+9 -7
View File
@@ -13,10 +13,12 @@ $ helm install --name my-release incubator/kube-registry-proxy
## Configuration
| Parameter | Description | Default |
|--------------------|-------------------------------------|----------------------------------------------|
| `image.repository` | The image repository to pull from | k8s.gcr.io/kube-registry-proxy |
| `image.tag` | The image tag to pull from | 0.4 |
| `image.pullPolicy` | Image pull policy | IfNotPresent |
| `registry.host` | The hostname of the target registry | "gcr.io" |
| `registry.port` | The port of the target registry | \<blank> |
| Parameter | Description | Default |
|--------------------|--------------------------------------------|----------------------------------------------|
| `image.repository` | The image repository to pull from | k8s.gcr.io/kube-registry-proxy |
| `image.tag` | The image tag to pull from | 0.4 |
| `image.pullPolicy` | Image pull policy | IfNotPresent |
| `registry.host` | The hostname of the target registry | "gcr.io" |
| `registry.port` | The port of the target registry | \<blank> |
| `hostPort` | The port to accept connections on the node | 5555 |
| `hostIP` | The interface address to bind on the node | 127.0.0.1 |
@@ -25,3 +25,4 @@ spec:
ports:
- containerPort: 80
hostPort: {{ default "5555" .Values.hostPort }}
hostIP: {{ default "127.0.0.1" .Values.hostIP }}