-
Notifications
You must be signed in to change notification settings - Fork 232
/
Copy pathmanifest.go
342 lines (297 loc) · 8.36 KB
/
manifest.go
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
package odf
import (
"bytes"
"text/template"
"github.com/hashicorp/go-version"
)
type storageInfo struct {
ODFDisks int64
}
func generateStorageClusterManifest(StorageClusterManifest string, odfDiskCounts int64) ([]byte, error) {
info := &storageInfo{ODFDisks: odfDiskCounts}
tmpl, err := template.New("OcsStorageCluster").Parse(StorageClusterManifest)
if err != nil {
return nil, err
}
buf := &bytes.Buffer{}
err = tmpl.Execute(buf, info)
if err != nil {
return nil, err
}
return buf.Bytes(), nil
}
func Manifests(mode odfDeploymentMode, numberOfDisks int64, openshiftVersion string) (map[string][]byte, []byte, error) {
openshiftManifests := make(map[string][]byte)
var odfSC []byte
var err error
if mode == compactMode {
odfSC, err = generateStorageClusterManifest(ocsMinDeploySC, numberOfDisks)
if err != nil {
return nil, nil, err
}
} else { // use the ODF CR with labelSelector to deploy ODF on only worker nodes
odfSC, err = generateStorageClusterManifest(ocsSc, numberOfDisks)
if err != nil {
return nil, nil, err
}
}
//Check if OCP version is 4.8.x if yes, then return manifests for OCS
v1, er := version.NewVersion(openshiftVersion)
if er != nil {
return nil, nil, er
}
constraints, er := version.NewConstraint(">= 4.8, < 4.9")
if er != nil {
return nil, nil, er
}
if constraints.Check(v1) {
openshiftManifests["50_openshift-ocs_ns.yaml"] = []byte(odfNamespace)
ocsSubscription, er := ocsSubscription()
if er != nil {
return map[string][]byte{}, []byte{}, er
}
openshiftManifests["50_openshift-ocs_subscription.yaml"] = []byte(ocsSubscription)
openshiftManifests["50_openshift-ocs_operator_group.yaml"] = []byte(odfOperatorGroup)
return openshiftManifests, odfSC, nil
}
//If OCP version is >=4.9 then return manifests for ODF
openshiftManifests["50_openshift-odf_ns.yaml"] = []byte(odfNamespace)
odfSubscription, err := odfSubscription()
if err != nil {
return map[string][]byte{}, []byte{}, err
}
openshiftManifests["50_openshift-odf_subscription.yaml"] = []byte(odfSubscription)
openshiftManifests["50_openshift-odf_operator_group.yaml"] = []byte(odfOperatorGroup)
odfSC = append([]byte(odfStorageSystem+"\n---\n"), odfSC...)
return openshiftManifests, odfSC, nil
}
func ocsSubscription() (string, error) {
data := map[string]string{
"OPERATOR_NAMESPACE": Operator.Namespace,
"OPERATOR_SUBSCRIPTION_NAME": "ocs-operator",
}
const ocsSubscription = `apiVersion: operators.coreos.com/v1alpha1
kind: Subscription
metadata:
name: "{{.OPERATOR_SUBSCRIPTION_NAME}}"
namespace: "{{.OPERATOR_NAMESPACE}}"
spec:
channel: stable-4.8
installPlanApproval: Automatic
name: ocs-operator
source: redhat-operators
sourceNamespace: openshift-marketplace`
tmpl, err := template.New("ocsSubscription").Parse(ocsSubscription)
if err != nil {
return "", err
}
buf := &bytes.Buffer{}
err = tmpl.Execute(buf, data)
if err != nil {
return "", err
}
return buf.String(), nil
}
func odfSubscription() (string, error) {
data := map[string]string{
"OPERATOR_NAMESPACE": Operator.Namespace,
"OPERATOR_SUBSCRIPTION_NAME": Operator.SubscriptionName,
}
const odfSubscription = `apiVersion: operators.coreos.com/v1alpha1
kind: Subscription
metadata:
name: "{{.OPERATOR_SUBSCRIPTION_NAME}}"
namespace: "{{.OPERATOR_NAMESPACE}}"
spec:
installPlanApproval: Automatic
name: odf-operator
source: redhat-operators
sourceNamespace: openshift-marketplace`
tmpl, err := template.New("ocsSubscription").Parse(odfSubscription)
if err != nil {
return "", err
}
buf := &bytes.Buffer{}
err = tmpl.Execute(buf, data)
if err != nil {
return "", err
}
return buf.String(), nil
}
const odfNamespace = `apiVersion: v1
kind: Namespace
metadata:
labels:
openshift.io/cluster-monitoring: "true"
name: openshift-storage
spec: {}`
const odfStorageSystem = `apiVersion: odf.openshift.io/v1alpha1
kind: StorageSystem
metadata:
name: ocs-storagecluster-storagesystem
namespace: openshift-storage
spec:
kind: storagecluster.ocs.openshift.io/v1
name: ocs-storagecluster
namespace: openshift-storage`
const odfOperatorGroup = `apiVersion: operators.coreos.com/v1
kind: OperatorGroup
metadata:
name: openshift-storage-operatorgroup
namespace: openshift-storage
spec:
targetNamespaces:
- openshift-storage`
const ocsMinDeploySC = `apiVersion: ocs.openshift.io/v1
kind: StorageCluster
metadata:
name: ocs-storagecluster
namespace: openshift-storage
spec:
labelSelector:
matchExpressions:
- key: node-role.kubernetes.io/worker
operator: In
values:
- ""
manageNodes: false
flexibleScaling: true
resources:
mds:
limits:
cpu: "3"
memory: "8Gi"
requests:
cpu: "1"
memory: "8Gi"
rgw:
limits:
cpu: "2"
memory: "4Gi"
requests:
cpu: "1"
memory: "4Gi"
monDataDirHostPath: /var/lib/rook
storageDeviceSets:
- count: {{.ODFDisks}}
dataPVCTemplate:
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: "1"
storageClassName: 'localblock-sc'
volumeMode: Block
name: ocs-deviceset
placement:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: node-role.kubernetes.io/worker
operator: Exists
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: app
operator: In
values:
- rook-ceph-osd
topologyKey: kubernetes.io/hostname
weight: 100
preparePlacement:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: node-role.kubernetes.io/worker
operator: Exists
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: app
operator: In
values:
- rook-ceph-osd-prepare
topologyKey: kubernetes.io/hostname
weight: 100
portable: false
replica: 1
resources:
limits:
cpu: "2"
memory: "5Gi"
requests:
cpu: "1"
memory: "5Gi"`
const ocsSc = `apiVersion: ocs.openshift.io/v1
kind: StorageCluster
metadata:
name: ocs-storagecluster
namespace: openshift-storage
spec:
labelSelector:
matchExpressions:
- key: node-role.kubernetes.io/worker
operator: In
values:
- ""
manageNodes: false
flexibleScaling: true
monDataDirHostPath: /var/lib/rook
storageDeviceSets:
- count: {{.ODFDisks}}
dataPVCTemplate:
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: "1"
storageClassName: 'localblock-sc'
volumeMode: Block
name: ocs-deviceset
placement:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: node-role.kubernetes.io/worker
operator: Exists
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: app
operator: In
values:
- rook-ceph-osd
topologyKey: kubernetes.io/hostname
weight: 100
preparePlacement:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: node-role.kubernetes.io/worker
operator: Exists
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: app
operator: In
values:
- rook-ceph-osd-prepare
topologyKey: kubernetes.io/hostname
weight: 100
portable: false
replica: 1
`