summaryrefslogtreecommitdiffstats
path: root/kubernetes/mock/templates/all-services.yaml
blob: a1b0f170de07c8e96d30441c210cf8317d4bb726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#{{ if not .Values.disableMockSniroEmulator }}
apiVersion: v1
kind: Service
metadata:
  name: sniro-emulator
  namespace: "{{ .Values.nsPrefix }}-mock"
  labels:
    app: sniro-emulator
spec:
  type: NodePort
  ports:
  - port: 80
    nodePort: {{ .Values.nodePortPrefix }}88
    targetPort: 9999
    protocol: TCP
    name: http
  selector:
    app: sniro-emulator
#{{ end }}