type: LoadBalancer for parrot svc if ingress disabled

Signed-off-by: Mathieu Benoit <mabenoit@microsoft.com>
This commit is contained in:
Mathieu Benoit 2018-11-10 14:21:07 -05:00
Родитель a6eaaf1097
Коммит 38ea76302f
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -14,4 +14,8 @@ spec:
targetPort: {{ .Values.service.internalPort }}
selector:
app: {{ template "fullname" . }}
type: ClusterIP
{{ if .Values.ingress.enabled }}
type: ClusterIP
{{ else }}
type: LoadBalancer
{{ end }}