12345678910111213141516171819 |
- {{- if .Values.portForwardingList }}
- apiVersion: v1
- kind: Service
- metadata:
- name: {{ include "ix-chart.fullname" . }}
- labels:
- {{- include "ix-chart.labels" . | nindent 4 }}
- spec:
- type: NodePort
- ports:
- {{- range $index, $config := .Values.portForwardingList }}
- - port: {{ $config.containerPort }}
- targetPort: {{ $config.containerPort }}
- protocol: {{ $config.protocol }}
- nodePort: {{ $config.nodePort }}
- {{- end }}
- selector:
- {{- include "ix-chart.selectorLabels" . | nindent 4 }}
- {{- end }}
|