mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[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:
committed by
k8s-ci-robot
parent
73d4c1c317
commit
1a7882e3e3
@@ -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
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user