15 lines
302 B
YAML
15 lines
302 B
YAML
{{ if .Values.testingModule.enable }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ .Release.Name }}-testing-module-gateway-service
|
|
spec:
|
|
selector:
|
|
app: {{ .Release.Name }}-testing-module-gateway
|
|
ports:
|
|
- name: http
|
|
protocol: TCP
|
|
port: 8080
|
|
targetPort: 8080
|
|
{{ end }}
|