forked from sonatype/nexus-iq-server-ha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iq-server-service_test.yaml
120 lines (119 loc) · 3.02 KB
/
iq-server-service_test.yaml
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
113
114
115
116
117
118
119
120
suite: iq-server-service
templates:
- iq-server-service.yaml
tests:
- it: renders with defaults
asserts:
- hasDocuments:
count: 2
- isKind:
of: Service
documentIndex: 0
- equal:
path: apiVersion
value: v1
documentIndex: 0
- equal:
path: metadata.name
value: RELEASE-NAME-iq-server-application-service
documentIndex: 0
- equal:
path: spec
value:
ports:
- name: iq-server-app-port-0
port: 8070
protocol: TCP
targetPort: application-0
selector:
name: RELEASE-NAME-iq-server
type: ClusterIP
documentIndex: 0
- isKind:
of: Service
documentIndex: 1
- equal:
path: apiVersion
value: v1
documentIndex: 1
- equal:
path: metadata.name
value: RELEASE-NAME-iq-server-admin-service
documentIndex: 1
- equal:
path: spec
value:
ports:
- name: iq-server-adm-port-0
port: 8071
protocol: TCP
targetPort: admin-0
selector:
name: RELEASE-NAME-iq-server
type: ClusterIP
documentIndex: 1
- it: renders with overridden values
set:
iq_server:
serviceType: NodePort
applicationServiceAnnotations:
name1: value1
name2: value2
adminServiceAnnotations:
name3: value3
name4: value4
config:
server:
applicationConnectors:
- port: 8072
type: https
adminConnectors:
- port: 8073
type: https
asserts:
- hasDocuments:
count: 2
- equal:
path: metadata.name
value: RELEASE-NAME-iq-server-application-service
documentIndex: 0
- equal:
path: metadata.annotations
value:
name1: value1
name2: value2
documentIndex: 0
- equal:
path: spec
value:
ports:
- name: iq-server-app-port-0
port: 8072
protocol: TCP
targetPort: application-0
selector:
name: RELEASE-NAME-iq-server
type: NodePort
documentIndex: 0
- equal:
path: metadata.name
value: RELEASE-NAME-iq-server-admin-service
documentIndex: 1
- equal:
path: metadata.annotations
value:
name3: value3
name4: value4
documentIndex: 1
- equal:
path: spec
value:
ports:
- name: iq-server-adm-port-0
port: 8073
protocol: TCP
targetPort: admin-0
selector:
name: RELEASE-NAME-iq-server
type: NodePort
documentIndex: 1