Commit 4edc3731 authored by Emil Munksø's avatar Emil Munksø
Browse files

fix: forgot to support protocol on deployment

parent ed852fc0
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -93,6 +93,7 @@ spec:
{{- range .Values.additionalServicePorts }}
        - name: {{ .name }}
          containerPort: {{ .targetPort }}
          protocol: {{ .protocol }} 
{{- end}}
{{- end }}
        livenessProbe:
+2 −1
Original line number Diff line number Diff line
@@ -453,6 +453,7 @@ func TestAdditionalServicePortDefinition(t *testing.T) {
				coreV1.ContainerPort {
					Name: "port-443",
					ContainerPort: 443,
					Protocol: "TCP",
				},
			},
			expectedErrorRegexp: regexp.MustCompile("Error: could not find template templates/service.yaml in chart"),