mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/envoy] Add support for static load balancer IP (#18219)
Signed-off-by: Shu Heng <solemnpriest@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
a224031d60
commit
66cb3a49f6
@@ -1,7 +1,7 @@
|
||||
apiVersion: v1
|
||||
description: Envoy is an open source edge and service proxy, designed for cloud-native applications.
|
||||
name: envoy
|
||||
version: 1.7.0
|
||||
version: 1.8.0
|
||||
appVersion: 1.11.2
|
||||
keywords:
|
||||
- envoy
|
||||
|
||||
@@ -14,6 +14,9 @@ metadata:
|
||||
{{- end }}
|
||||
spec:
|
||||
type: {{ .Values.service.type }}
|
||||
{{- if ne .Values.service.loadBalancerIP "" }}
|
||||
loadBalancerIp: {{ .Values.service.loadBalancerIP }}
|
||||
{{- end }}
|
||||
ports:
|
||||
{{- range $key, $value := .Values.service.ports }}
|
||||
- name: {{ $key }}
|
||||
|
||||
@@ -36,6 +36,8 @@ service:
|
||||
## Service name is user-configurable for maximum service discovery flexibility.
|
||||
name: envoy
|
||||
type: ClusterIP
|
||||
## Ignored if the type is not LoadBalancer or if the IP is empty string
|
||||
loadBalancerIP: ""
|
||||
annotations: {}
|
||||
## AWS example for use with LoadBalancer service type.
|
||||
# external-dns.alpha.kubernetes.io/hostname: envoy.cluster.local
|
||||
|
||||
Reference in New Issue
Block a user