aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/mock/templates/all-services.yaml
blob: a457d8ed9ceacc0b1292a60a7cb559b891e35888 (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 }}"
  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 }}