blob: 196e7b196ac140a69fe30f179774b189c8e77e9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#{{ if not .Values.disableRobotRobot }}
apiVersion: v1
kind: Service
metadata:
labels:
app: robot
name: robot
namespace: "{{ .Values.nsPrefix }}-robot"
spec:
ports:
- port: 88
nodePort: {{ .Values.nodePortPrefix }}09
selector:
app: robot
type: NodePort
#{{ end }}
|