mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
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:
committed by
Kubernetes Prow Robot
parent
d1a1600b40
commit
2a1efe838f
@@ -12,5 +12,5 @@ maintainers:
|
||||
name: kong
|
||||
sources:
|
||||
- https://github.com/Kong/kong
|
||||
version: 0.30.0
|
||||
version: 0.30.1
|
||||
appVersion: 1.3
|
||||
|
||||
@@ -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" . }}
|
||||
|
||||
Reference in New Issue
Block a user