summaryrefslogtreecommitdiffstats
path: root/kubernetes/policy/templates/all-services.yaml
blob: 82360334ac3e8476dd170372a9ac380994cca0c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
apiVersion: v1
kind: Service
metadata:
  name: mariadb
  namespace: "{{ .Values.nsPrefix }}-policy"
  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.nsPrefix }}-policy"
spec:
  ports:
  - name: nexus-port
    port: 8081
  selector:
    app: nexus
  clusterIP: None
---
apiVersion: v1
kind: Service
metadata:
  labels:
    app: drools
  name: drools
  namespace: "{{ .Values.nsPrefix }}-policy"
spec:
  ports:
  - name: "drools-port"
    port: 6969
    nodePort: 30217
  selector:
    app: drools
  type: NodePort
---
apiVersion: v1
kind: Service
metadata:
  name: pap
  namespace: "{{ .Values.nsPrefix }}-policy"
  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.nsPrefix }}-policy"
  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.nsPrefix }}-policy"
  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.nsPrefix }}-policy"
  labels:
    app: brmsgw
spec:
  ports:
  - name: 9989-port
    port: 9989
    nodePort: 30216
  selector:
    app: brmsgw
  type: NodePort