From 964f0bccd3aba26f4b24c7cd22cba2b9bd247cfb Mon Sep 17 00:00:00 2001 From: Yann Ponzoni Date: Thu, 27 Feb 2020 10:03:12 +0100 Subject: [PATCH] [bitnami/mysql] Fixed nodePort definition (typo) (#1981) --- bitnami/mysql/templates/master-svc.yaml | 2 +- bitnami/mysql/templates/slave-svc.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/mysql/templates/master-svc.yaml b/bitnami/mysql/templates/master-svc.yaml index a81ea419d..22cf283fc 100644 --- a/bitnami/mysql/templates/master-svc.yaml +++ b/bitnami/mysql/templates/master-svc.yaml @@ -24,7 +24,7 @@ spec: - name: mysql port: {{ .Values.service.port }} targetPort: mysql - {{- if and (or (eq .Values.service.type "NodePort") (eq .Values.service.type "LoadBalancer")) (not (empty .Values.service.nodePortl)) }} + {{- if and (or (eq .Values.service.type "NodePort") (eq .Values.service.type "LoadBalancer")) (not (empty .Values.service.nodePort)) }} nodePort: {{ .Values.service.nodePort }} {{- else if eq .Values.service.type "ClusterIP" }} nodePort: null diff --git a/bitnami/mysql/templates/slave-svc.yaml b/bitnami/mysql/templates/slave-svc.yaml index 032a3acfc..818339c06 100644 --- a/bitnami/mysql/templates/slave-svc.yaml +++ b/bitnami/mysql/templates/slave-svc.yaml @@ -25,7 +25,7 @@ spec: - name: mysql port: {{ .Values.service.port }} targetPort: mysql - {{- if and (or (eq .Values.service.type "NodePort") (eq .Values.service.type "LoadBalancer")) (not (empty .Values.service.nodePortl)) }} + {{- if and (or (eq .Values.service.type "NodePort") (eq .Values.service.type "LoadBalancer")) (not (empty .Values.service.nodePort)) }} nodePort: {{ .Values.service.nodePort }} {{- else if eq .Values.service.type "ClusterIP" }} nodePort: null