15 lines
330 B
YAML
15 lines
330 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: app
|
|
namespace: {{ .Values.namespace }}
|
|
spec:
|
|
selector:
|
|
app: web
|
|
ports:
|
|
- name: http-app
|
|
protocol: TCP
|
|
port: {{ .Values.web.port }}
|
|
targetPort: 5000
|
|
nodePort: {{ .Values.web.nodePort }}
|
|
type: {{ .Values.web.serviceType | default "ClusterIP" }}
|