summaryrefslogtreecommitdiffstats
path: root/kubernetes/policy/templates/all-services.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'kubernetes/policy/templates/all-services.yaml')
-rw-r--r--kubernetes/policy/templates/all-services.yaml112
1 files changed, 112 insertions, 0 deletions
diff --git a/kubernetes/policy/templates/all-services.yaml b/kubernetes/policy/templates/all-services.yaml
new file mode 100644
index 0000000000..e15b1298d7
--- /dev/null
+++ b/kubernetes/policy/templates/all-services.yaml
@@ -0,0 +1,112 @@
+apiVersion: v1
+kind: Service
+metadata:
+ name: mariadb
+ namespace: {{ .Values.NS }}
+ labels:
+ app: mariadb
+spec:
+ ports:
+ - name: 3306-port
+ port: 3306
+ selector:
+ app: mariadb
+ clusterIP: None
+---
+apiVersion: v1
+kind: Service
+metadata:
+ labels:
+ app: nexus
+ name: nexus
+ namespace: {{ .Values.NS }}
+spec:
+ ports:
+ - name: nexus-port
+ port: 8081
+ selector:
+ app: nexus
+ clusterIP: None
+---
+apiVersion: v1
+kind: Service
+metadata:
+ labels:
+ app: drools
+ name: drools
+ namespace: {{ .Values.NS }}
+spec:
+ ports:
+ - name: "drools-port"
+ port: 6969
+ nodePort: 30217
+ selector:
+ app: drools
+ type: NodePort
+---
+apiVersion: v1
+kind: Service
+metadata:
+ name: pap
+ namespace: {{ .Values.NS }}
+ labels:
+ app: pap
+spec:
+ ports:
+ - name: 8443-port
+ port: 8443
+ nodePort: 30219
+ - name: 9091-port
+ port: 9091
+ nodePort: 30218
+ selector:
+ app: pap
+ type: NodePort
+---
+apiVersion: v1
+kind: Service
+metadata:
+ name: pdp
+ namespace: {{ .Values.NS }}
+ labels:
+ app: pdp
+spec:
+ ports:
+ - name: 8081-port
+ port: 8081
+ nodePort: 30220
+ selector:
+ app: pdp
+ type: NodePort
+---
+apiVersion: v1
+kind: Service
+metadata:
+ name: pypdp
+ namespace: {{ .Values.NS }}
+ labels:
+ app: pypdp
+spec:
+ ports:
+ - name: tcp-31032-8480-bm91k
+ port: 8480
+ nodePort: 30221
+ selector:
+ app: pypdp
+ type: NodePort
+---
+apiVersion: v1
+kind: Service
+metadata:
+ name: brmsgw
+ namespace: {{ .Values.NS }}
+ labels:
+ app: brmsgw
+spec:
+ ports:
+ - name: 9989-port
+ port: 9989
+ nodePort: 30216
+ selector:
+ app: brmsgw
+ type: NodePort