Added clusterIP as a possible configuration value to service-kong-proxy.yaml (#19710)

Signed-off-by: Steffen Folman Qvistgaard <folman@tdc.dk>
This commit is contained in:
Steffen F. Qvistgaard
2019-12-20 08:37:32 -08:00
committed by Kubernetes Prow Robot
parent d1a1600b40
commit 2a1efe838f
3 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -12,5 +12,5 @@ maintainers:
name: kong
sources:
- https://github.com/Kong/kong
version: 0.30.0
version: 0.30.1
appVersion: 1.3
+7
View File
@@ -90,6 +90,7 @@ and their default values.
| proxy.tls.hostPort | Host port to use for TLS | |
| proxy.tls.overrideServiceTargetPort| Override service port to use for TLS without touching Kong containerPort | |
| proxy.type | k8s service type. Options: NodePort, ClusterIP, LoadBalancer | `NodePort` |
| proxy.clusterIP | k8s service clusterIP | |
| proxy.loadBalancerSourceRanges | Limit proxy access to CIDRs if set and service type is `LoadBalancer` | `[]` |
| proxy.loadBalancerIP | To reuse an existing ingress static IP for the admin service | |
| proxy.externalIPs | IPs for which nodes in the cluster will also accept traffic for the proxy | `[]` |
@@ -407,6 +408,12 @@ You can can learn about kong ingress custom resource definitions [here](https://
## Changelog
=======
### 0.30.1
#### New Features
- Add support for specifying Proxy service cluster ip.
### 0.30.0
@@ -50,6 +50,9 @@ spec:
{{- if .Values.proxy.externalTrafficPolicy }}
externalTrafficPolicy: {{ .Values.proxy.externalTrafficPolicy }}
{{- end }}
{{- if .Values.proxy.clusterIP }}
clusterIP: {{ .Values.proxy.clusterIP }}
{{- end }}
selector:
app: {{ template "kong.name" . }}