Explorar el Código

Properly specify namesuffix for postgres-service

Waqar Ahmed hace 4 años
padre
commit
7e1c9080d1
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      test/nextcloud/1.1.0/templates/postgres-service.yaml

+ 2 - 1
test/nextcloud/1.1.0/templates/postgres-service.yaml

@@ -1,5 +1,6 @@
 {{ $ports := list }}
 {{ $ports = mustAppend $ports (dict "name" "postgres-tcp" "port" 5432 "targetPort" 5432) }}
 {{ $params := . }}
-{{ $_ := set $params "service" (dict "type" "ClusterIP" "ports" $ports "nameSuffix" "postgres" ) }}
+{{ $_ := set $params "service" (dict "type" "ClusterIP" "ports" $ports ) }}
+{{ $_1 := set $params "nameSuffix" "postgres" }}
 {{ include "common.classes.service" $params }}