forked from red-hat-storage/ocs-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstorage_cluster.py
2955 lines (2572 loc) · 108 KB
/
storage_cluster.py
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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""
StorageCluster related functionalities
"""
import copy
import ipaddress
import logging
import re
import tempfile
import json
from jsonschema import validate
from jsonschema.exceptions import ValidationError
from ocs_ci.framework import config
from ocs_ci.deployment.helpers.external_cluster_helpers import (
ExternalCluster,
get_external_cluster_client,
)
from ocs_ci.helpers.managed_services import (
verify_provider_topology,
get_ocs_osd_deployer_version,
verify_faas_resources,
)
from ocs_ci.ocs import constants, defaults, ocp, managedservice
from ocs_ci.ocs.exceptions import (
CommandFailed,
ResourceNotFoundError,
UnsupportedFeatureError,
PVNotSufficientException,
)
from ocs_ci.ocs.ocp import get_images, OCP
from ocs_ci.ocs.resources import csv, deployment
from ocs_ci.ocs.resources.ocs import get_ocs_csv
from ocs_ci.ocs.resources.pod import (
get_pods_having_label,
get_osd_pods,
get_mon_pods,
get_mds_pods,
get_mgr_pods,
get_rgw_pods,
get_plugin_pods,
get_cephfsplugin_provisioner_pods,
get_rbdfsplugin_provisioner_pods,
get_ceph_tools_pod,
get_osd_pod_id,
)
from ocs_ci.ocs.resources.pv import check_pvs_present_for_ocs_expansion
from ocs_ci.ocs.resources.pvc import get_deviceset_pvcs
from ocs_ci.ocs.node import (
get_osds_per_node,
add_new_disk_for_vsphere,
get_osd_running_nodes,
get_encrypted_osd_devices,
verify_worker_nodes_security_groups,
add_disk_to_node,
get_nodes,
get_nodes_where_ocs_pods_running,
get_provider_internal_node_ips,
add_disk_stretch_arbiter,
)
from ocs_ci.ocs.utils import get_primary_cluster_config
from ocs_ci.ocs.version import get_ocp_version
from ocs_ci.utility.version import (
get_semantic_version,
VERSION_4_11,
get_semantic_ocp_running_version,
)
from ocs_ci.helpers.helpers import (
get_secret_names,
get_cephfs_name,
get_logs_rook_ceph_operator,
)
from ocs_ci.utility import (
localstorage,
utils,
templating,
kms as KMS,
version,
)
from ocs_ci.utility.retry import retry
from ocs_ci.utility.rgwutils import get_rgw_count
from ocs_ci.utility.utils import (
run_cmd,
TimeoutSampler,
convert_device_size,
extract_image_urls,
)
from ocs_ci.utility.decorators import switch_to_orig_index_at_last
from ocs_ci.helpers.helpers import storagecluster_independent_check
log = logging.getLogger(__name__)
class StorageCluster(OCP):
"""
This class represent StorageCluster and contains all related
methods we need to do with StorageCluster.
"""
_has_phase = True
def __init__(self, resource_name="", *args, **kwargs):
"""
Constructor method for StorageCluster class
Args:
resource_name (str): Name of StorageCluster
"""
super(StorageCluster, self).__init__(
resource_name=resource_name, kind="StorageCluster", *args, **kwargs
)
def verify_osd_tree_schema(ct_pod, deviceset_pvcs):
"""
Verify Ceph OSD tree schema
Args:
ct_pod (:obj:`OCP`): Object of the Ceph tools pod
deviceset_pvcs (list): List of strings of deviceset PVC names
"""
_deviceset_pvcs = copy.deepcopy(deviceset_pvcs)
osd_tree = ct_pod.exec_ceph_cmd(ceph_cmd="ceph osd tree", format="json")
schemas = {
"root": constants.OSD_TREE_ROOT,
"rack": constants.OSD_TREE_RACK,
"host": constants.OSD_TREE_HOST,
"osd": constants.OSD_TREE_OSD,
"region": constants.OSD_TREE_REGION,
"zone": constants.OSD_TREE_ZONE,
}
schemas["host"]["properties"]["name"] = {"enum": _deviceset_pvcs}
for item in osd_tree["nodes"]:
validate(instance=item, schema=schemas[item["type"]])
if item["type"] == "host":
_deviceset_pvcs.remove(item["name"])
assert not _deviceset_pvcs, (
f"These device set PVCs are not given in ceph osd tree output "
f"- {_deviceset_pvcs}"
)
log.info(
"Verified ceph osd tree output. Device set PVC names are given in the "
"output."
)
def ocs_install_verification(
timeout=600,
skip_osd_distribution_check=False,
ocs_registry_image=None,
post_upgrade_verification=False,
version_before_upgrade=None,
):
"""
Perform steps necessary to verify a successful OCS installation
Args:
timeout (int): Number of seconds for timeout which will be used in the
checks used in this function.
skip_osd_distribution_check (bool): If true skip the check for osd
distribution.
ocs_registry_image (str): Specific image to check if it was installed
properly.
post_upgrade_verification (bool): Set to True if this function is
called after upgrade.
version_before_upgrade (float): Set to OCS version before upgrade
"""
from ocs_ci.ocs.node import get_nodes
from ocs_ci.ocs.resources.pvc import get_deviceset_pvcs
from ocs_ci.ocs.resources.pod import get_ceph_tools_pod, get_all_pods
from ocs_ci.ocs.cluster import validate_cluster_on_pvc
from ocs_ci.ocs.resources.fips import check_fips_enabled
number_of_worker_nodes = len(get_nodes())
namespace = config.ENV_DATA["cluster_namespace"]
log.info("Verifying OCS installation")
if config.ENV_DATA.get("disable_components"):
for component in config.ENV_DATA["disable_components"]:
config.COMPONENTS[f"disable_{component}"] = True
disable_noobaa = config.COMPONENTS["disable_noobaa"]
disable_rgw = config.COMPONENTS["disable_rgw"]
disable_blockpools = config.COMPONENTS["disable_blockpools"]
disable_cephfs = config.COMPONENTS["disable_cephfs"]
managed_service = (
config.ENV_DATA["platform"].lower() in constants.MANAGED_SERVICE_PLATFORMS
)
hci_cluster = (
config.ENV_DATA.get("platform") in constants.HCI_PROVIDER_CLIENT_PLATFORMS
)
provider_cluster = (managed_service or hci_cluster) and config.ENV_DATA[
"cluster_type"
].lower() == "provider"
consumer_cluster = (
managed_service
and config.ENV_DATA["cluster_type"].lower() == constants.MS_CONSUMER_TYPE
)
client_cluster = (
hci_cluster and config.ENV_DATA["cluster_type"].lower() == constants.HCI_CLIENT
)
ocs_version = version.get_semantic_ocs_version_from_config()
external = config.DEPLOYMENT["external_mode"] or consumer_cluster or client_cluster
fusion_aas = config.ENV_DATA.get("platform") == constants.FUSIONAAS_PLATFORM
fusion_aas_consumer = fusion_aas and consumer_cluster
fusion_aas_provider = fusion_aas and provider_cluster
# Basic Verification for cluster
if not (fusion_aas_consumer or client_cluster):
basic_verification(ocs_registry_image)
if client_cluster:
verify_ocs_csv(ocs_registry_image=None)
# Verify pods in running state and proper counts
log.info("Verifying pod states and counts")
exporter_pod_count = len(get_nodes_where_ocs_pods_running())
storage_cluster_name = config.ENV_DATA["storage_cluster_name"]
storage_cluster = StorageCluster(
resource_name=storage_cluster_name,
namespace=namespace,
)
pod = OCP(kind=constants.POD, namespace=namespace)
if not external:
osd_count = int(
storage_cluster.data["spec"]["storageDeviceSets"][0]["count"]
) * int(storage_cluster.data["spec"]["storageDeviceSets"][0]["replica"])
rgw_count = None
if config.ENV_DATA.get("platform") in constants.ON_PREM_PLATFORMS:
if not disable_rgw:
rgw_count = get_rgw_count(
f"{ocs_version}", post_upgrade_verification, version_before_upgrade
)
min_eps = constants.MIN_NB_ENDPOINT_COUNT_POST_DEPLOYMENT
if config.ENV_DATA.get("platform") == constants.IBM_POWER_PLATFORM:
min_eps = 1
nb_db_label = (
constants.NOOBAA_DB_LABEL_46_AND_UNDER
if ocs_version < version.VERSION_4_7
else constants.NOOBAA_DB_LABEL_47_AND_ABOVE
)
resources_dict = {
nb_db_label: 1,
constants.OCS_OPERATOR_LABEL: 1,
constants.OPERATOR_LABEL: 1,
constants.NOOBAA_OPERATOR_POD_LABEL: 1,
constants.NOOBAA_CORE_POD_LABEL: 1,
constants.NOOBAA_ENDPOINT_POD_LABEL: min_eps,
}
if config.ENV_DATA.get("noobaa_external_pgsql"):
del resources_dict[nb_db_label]
if provider_cluster:
resources_dict.update(
{
constants.MON_APP_LABEL: 3,
constants.OSD_APP_LABEL: osd_count,
constants.MGR_APP_LABEL: 1,
constants.MDS_APP_LABEL: 2,
}
)
elif client_cluster and (ocs_version < version.VERSION_4_17):
resources_dict.update(
{
constants.CSI_CEPHFSPLUGIN_LABEL: number_of_worker_nodes,
constants.CSI_CEPHFSPLUGIN_PROVISIONER_LABEL: 2,
constants.CSI_RBDPLUGIN_LABEL: number_of_worker_nodes,
constants.CSI_RBDPLUGIN_PROVISIONER_LABEL: 2,
}
)
elif not config.DEPLOYMENT["external_mode"]:
resources_dict.update(
{
constants.MON_APP_LABEL: 3,
constants.CSI_CEPHFSPLUGIN_LABEL: number_of_worker_nodes,
constants.CSI_CEPHFSPLUGIN_PROVISIONER_LABEL: 2,
constants.CSI_RBDPLUGIN_LABEL: number_of_worker_nodes,
constants.CSI_RBDPLUGIN_PROVISIONER_LABEL: 2,
constants.OSD_APP_LABEL: osd_count,
constants.MGR_APP_LABEL: 1,
constants.MDS_APP_LABEL: 2,
constants.RGW_APP_LABEL: rgw_count,
constants.EXPORTER_APP_LABEL: exporter_pod_count,
}
)
if config.DEPLOYMENT.get("arbiter_deployment"):
resources_dict.update(
{
constants.MON_APP_LABEL: 5,
}
)
if fusion_aas_consumer or client_cluster:
del resources_dict[constants.OCS_OPERATOR_LABEL]
del resources_dict[constants.OPERATOR_LABEL]
if ocs_version >= version.VERSION_4_9:
resources_dict.update(
{
constants.ODF_OPERATOR_CONTROL_MANAGER_LABEL: 1,
}
)
if ocs_version >= version.VERSION_4_15 and not client_cluster:
resources_dict.update(
{
constants.UX_BACKEND_APP_LABEL: 1,
}
)
if ocs_version >= version.VERSION_4_17:
resources_dict.update(
{
constants.CEPH_CSI_CONTROLLER_MANAGER_LABEL: 1,
}
)
# In provider mode, add the new name and label that replaces the provisioner and plugin pods
if hci_cluster:
resources_dict.update(
{
constants.CEPHFS_NODEPLUGIN_LABEL: number_of_worker_nodes,
constants.RBD_NODEPLUGIN_LABEL: number_of_worker_nodes,
constants.CEPHFS_CTRLPLUGIN_LABEL: 2,
constants.RBD_CTRLPLUGIN_LABEL: 2,
}
)
for label, count in resources_dict.items():
if label == constants.RGW_APP_LABEL:
if (
not config.ENV_DATA.get("platform") in constants.ON_PREM_PLATFORMS
or managed_service
or disable_rgw
):
continue
if "noobaa" in label and (disable_noobaa or managed_service or client_cluster):
continue
if "mds" in label and disable_cephfs:
continue
if label == constants.MANAGED_CONTROLLER_LABEL:
if fusion_aas_provider:
service_pod = OCP(
kind=constants.POD, namespace=config.ENV_DATA["service_namespace"]
)
assert service_pod.wait_for_resource(
condition=constants.STATUS_RUNNING,
selector=label,
resource_count=count,
timeout=timeout,
)
continue
assert pod.wait_for_resource(
condition=constants.STATUS_RUNNING,
selector=label,
resource_count=count,
timeout=timeout,
)
# Checks for FaaS
if fusion_aas:
verify_faas_resources()
# Verify StorageClasses (1 ceph-fs, 1 ceph-rbd)
log.info("Verifying storage classes")
storage_class = OCP(kind=constants.STORAGECLASS, namespace=namespace)
storage_cluster_name = config.ENV_DATA["storage_cluster_name"]
if config.ENV_DATA.get("custom_default_storageclass_names"):
custom_sc = get_storageclass_names_from_storagecluster_spec()
if not all(
sc in custom_sc
for sc in [
constants.OCS_COMPONENTS_MAP["blockpools"],
constants.OCS_COMPONENTS_MAP["cephfs"],
]
):
raise ValueError(
"Custom StorageClass are not defined in Storagecluster Spec."
)
required_storage_classes = {
custom_sc[constants.OCS_COMPONENTS_MAP["cephfs"]],
custom_sc[constants.OCS_COMPONENTS_MAP["blockpools"]],
}
else:
required_storage_classes = {
f"{storage_cluster_name}-cephfs",
f"{storage_cluster_name}-ceph-rbd",
}
skip_storage_classes = set()
if disable_cephfs or provider_cluster:
skip_storage_classes.update(
{
f"{storage_cluster_name}-cephfs",
}
)
if disable_blockpools or provider_cluster:
skip_storage_classes.update(
{
f"{storage_cluster_name}-ceph-rbd",
}
)
required_storage_classes = required_storage_classes.difference(skip_storage_classes)
if config.DEPLOYMENT["external_mode"]:
required_storage_classes.update(
{
f"{storage_cluster_name}-ceph-rgw",
f'{config.ENV_DATA["cluster_namespace"]}.noobaa.io',
}
)
storage_classes = storage_class.get()
storage_class_names = {
item["metadata"]["name"] for item in storage_classes["items"]
}
# required storage class names should be observed in the cluster under test
missing_scs = required_storage_classes.difference(storage_class_names)
if len(missing_scs) > 0:
log.error("few storage classess are not present: %s", missing_scs)
assert list(missing_scs) == []
# Verify OSDs are distributed
if not external:
if not skip_osd_distribution_check:
log.info("Verifying OSDs are distributed evenly across worker nodes")
ocp_pod_obj = OCP(kind=constants.POD, namespace=namespace)
osds = ocp_pod_obj.get(selector=constants.OSD_APP_LABEL)["items"]
deviceset_count = get_deviceset_count()
node_names = [osd["spec"]["nodeName"] for osd in osds]
for node in node_names:
assert (
not node_names.count(node) > deviceset_count
), "OSD's are not distributed evenly across worker nodes"
# Verify that CSI driver object contains provisioner names
log.info("Verifying CSI driver object contains provisioner names.")
csi_driver = OCP(kind="CSIDriver")
csi_drivers = {item["metadata"]["name"] for item in csi_driver.get()["items"]}
if not provider_cluster:
if fusion_aas_consumer or client_cluster:
{
f"{namespace}.cephfs.csi.ceph.com",
f"{namespace}.rbd.csi.ceph.com",
}.issubset(csi_drivers)
else:
assert defaults.CSI_PROVISIONERS.issubset(csi_drivers)
# Verify node and provisioner secret names in storage class
log.info("Verifying node and provisioner secret names in storage class.")
cluster_name = config.ENV_DATA["cluster_name"]
if config.ENV_DATA.get("custom_default_storageclass_names"):
sc_rbd = storage_class.get(
resource_name=custom_sc[constants.OCS_COMPONENTS_MAP["blockpools"]]
)
sc_cephfs = storage_class.get(
resource_name=custom_sc[constants.OCS_COMPONENTS_MAP["cephfs"]]
)
elif config.DEPLOYMENT["external_mode"]:
sc_rbd = storage_class.get(
resource_name=constants.DEFAULT_EXTERNAL_MODE_STORAGECLASS_RBD
)
sc_cephfs = storage_class.get(
resource_name=(constants.DEFAULT_EXTERNAL_MODE_STORAGECLASS_CEPHFS)
)
else:
if not disable_blockpools and not provider_cluster:
sc_rbd = storage_class.get(resource_name=constants.DEFAULT_STORAGECLASS_RBD)
if not disable_cephfs and not provider_cluster:
sc_cephfs = storage_class.get(
resource_name=constants.DEFAULT_STORAGECLASS_CEPHFS
)
if not disable_blockpools and not provider_cluster:
if consumer_cluster or client_cluster:
assert (
"rook-ceph-client"
in sc_rbd["parameters"]["csi.storage.k8s.io/node-stage-secret-name"]
)
assert (
"rook-ceph-client"
in sc_rbd["parameters"]["csi.storage.k8s.io/provisioner-secret-name"]
)
else:
if (
config.DEPLOYMENT["external_mode"]
and config.ENV_DATA["restricted-auth-permission"]
):
if config.ENV_DATA.get("alias_rbd_name"):
rbd_name = config.ENV_DATA["alias_rbd_name"]
else:
rbd_name = config.ENV_DATA.get("rbd_name") or defaults.RBD_NAME
rbd_node_secret = (
f"{constants.RBD_NODE_SECRET}-{cluster_name}-{rbd_name}"
)
rbd_provisioner_secret = (
f"{constants.RBD_PROVISIONER_SECRET}-{cluster_name}-{rbd_name}"
)
assert (
sc_rbd["parameters"]["csi.storage.k8s.io/node-stage-secret-name"]
== rbd_node_secret
)
assert (
sc_rbd["parameters"]["csi.storage.k8s.io/provisioner-secret-name"]
== rbd_provisioner_secret
)
else:
assert (
sc_rbd["parameters"]["csi.storage.k8s.io/node-stage-secret-name"]
== constants.RBD_NODE_SECRET
)
assert (
sc_rbd["parameters"]["csi.storage.k8s.io/provisioner-secret-name"]
== constants.RBD_PROVISIONER_SECRET
)
if not disable_cephfs and not provider_cluster:
if consumer_cluster or client_cluster:
assert (
"rook-ceph-client"
in sc_cephfs["parameters"]["csi.storage.k8s.io/node-stage-secret-name"]
)
assert (
"rook-ceph-client"
in sc_cephfs["parameters"]["csi.storage.k8s.io/provisioner-secret-name"]
)
else:
if (
config.DEPLOYMENT["external_mode"]
and config.ENV_DATA["restricted-auth-permission"]
):
cephfs_name = config.ENV_DATA.get("cephfs_name") or get_cephfs_name()
cephfs_node_secret = (
f"{constants.CEPHFS_NODE_SECRET}-{cluster_name}-{cephfs_name}"
)
cephfs_provisioner_secret = f"{constants.CEPHFS_PROVISIONER_SECRET}-{cluster_name}-{cephfs_name}"
assert (
sc_cephfs["parameters"]["csi.storage.k8s.io/node-stage-secret-name"]
== cephfs_node_secret
)
assert (
sc_cephfs["parameters"][
"csi.storage.k8s.io/provisioner-secret-name"
]
== cephfs_provisioner_secret
)
else:
assert (
sc_cephfs["parameters"]["csi.storage.k8s.io/node-stage-secret-name"]
== constants.CEPHFS_NODE_SECRET
)
assert (
sc_cephfs["parameters"][
"csi.storage.k8s.io/provisioner-secret-name"
]
== constants.CEPHFS_PROVISIONER_SECRET
)
log.info("Verified node and provisioner secret names in storage class.")
# TODO: Enable the tools pod check when a solution is identified for tools pod on FaaS consumer
if not (fusion_aas_consumer or client_cluster):
ct_pod = get_ceph_tools_pod()
# https://github.com/red-hat-storage/ocs-ci/issues/3820
# Verify ceph osd tree output
if not (
config.DEPLOYMENT.get("ui_deployment")
or config.DEPLOYMENT["external_mode"]
or managed_service
or hci_cluster
):
log.info(
"Verifying ceph osd tree output and checking for device set PVC names "
"in the output."
)
if config.DEPLOYMENT.get("local_storage"):
deviceset_pvcs = [osd.get_node() for osd in get_osd_pods()]
# removes duplicate hostname
deviceset_pvcs = list(set(deviceset_pvcs))
if (
config.ENV_DATA.get("platform")
in [constants.BAREMETAL_PLATFORM, constants.HCI_BAREMETAL]
or config.ENV_DATA.get("platform") == constants.AWS_PLATFORM
):
deviceset_pvcs = [
deviceset.replace(".", "-") for deviceset in deviceset_pvcs
]
else:
deviceset_pvcs = [pvc.name for pvc in get_deviceset_pvcs()]
# Allowing re-try here in the deployment, as there might be a case in RDR
# scenario, that OSD is getting delayed for few seconds and is not UP yet.
# Issue: https://github.com/red-hat-storage/ocs-ci/issues/9666
retry((ValidationError), tries=3, delay=60)(verify_osd_tree_schema)(
ct_pod, deviceset_pvcs
)
# TODO: Verify ceph osd tree output have osd listed as ssd
# TODO: Verify ceph osd tree output have zone or rack based on AZ
# verify caps for external cluster
log.info("Verify CSI users and caps for external cluster")
if config.DEPLOYMENT["external_mode"] and ocs_version >= version.VERSION_4_10:
if config.ENV_DATA["restricted-auth-permission"]:
ceph_csi_users = [
f"client.csi-cephfs-node-{cluster_name}-{cephfs_name}",
f"client.csi-cephfs-provisioner-{cluster_name}-{cephfs_name}",
f"client.csi-rbd-node-{cluster_name}-{rbd_name}",
f"client.csi-rbd-provisioner-{cluster_name}-{rbd_name}",
]
log.debug(f"CSI users for restricted auth permissions are {ceph_csi_users}")
expected_csi_users = copy.deepcopy(ceph_csi_users)
else:
ceph_csi_users = copy.deepcopy(defaults.ceph_csi_users)
expected_csi_users = copy.deepcopy(defaults.ceph_csi_users)
ceph_auth_data = ct_pod.exec_cmd_on_pod("ceph auth ls -f json")
for each in ceph_auth_data["auth_dump"]:
if each["entity"] in expected_csi_users:
assert (
"osd blocklist" in each["caps"]["mon"]
), f"osd blocklist caps are not present for user {each['entity']}"
ceph_csi_users.remove(each["entity"])
assert (
not ceph_csi_users
), f"CSI users {ceph_csi_users} not created in external cluster"
log.debug("All CSI users exists and have expected caps")
if config.ENV_DATA.get("rgw-realm"):
log.info("Verify user is created in realm")
object_store_user = defaults.EXTERNAL_CLUSTER_OBJECT_STORE_USER
realm = config.ENV_DATA.get("rgw-realm")
host, user, password, ssh_key = get_external_cluster_client()
external_cluster = ExternalCluster(host, user, password, ssh_key)
assert external_cluster.is_object_store_user_exists(
user=object_store_user, realm=realm
), f"{object_store_user} doesn't exist in realm {realm}"
# Verify CSI snapshotter sidecar container is not present
# if the OCS version is < 4.6
if ocs_version < version.VERSION_4_6:
log.info("Verifying CSI snapshotter is not present.")
provisioner_pods = get_all_pods(
namespace=config.ENV_DATA["cluster_namespace"],
selector=[
constants.CSI_CEPHFSPLUGIN_PROVISIONER_LABEL,
constants.CSI_RBDPLUGIN_PROVISIONER_LABEL,
],
)
for pod_obj in provisioner_pods:
pod_info = pod_obj.get()
for container, image in get_images(data=pod_info).items():
assert ("snapshot" not in container) and ("snapshot" not in image), (
f"Snapshot container is present in {pod_obj.name} pod. "
f"Container {container}. Image {image}"
)
ocs_csv = get_ocs_csv()
deployments = ocs_csv.get()["spec"]["install"]["spec"]["deployments"]
rook_ceph_operator_deployment = [
deployment_val
for deployment_val in deployments
if deployment_val["name"] == "rook-ceph-operator"
]
assert {"name": "CSI_ENABLE_SNAPSHOTTER", "value": "false"} in (
rook_ceph_operator_deployment[0]["spec"]["template"]["spec"]["containers"][
0
]["env"]
), "CSI_ENABLE_SNAPSHOTTER value is not set to 'false'."
log.info("Verified: CSI snapshotter is not present.")
# Verify pool crush rule is with "type": "zone"
# TODO: Enable the check when a solution is identified for tools pod on FaaS consumer
if utils.get_az_count() == 3 and not fusion_aas_consumer:
log.info("Verifying pool crush rule is with type: zone")
crush_dump = ct_pod.exec_ceph_cmd(ceph_cmd="ceph osd crush dump", format="")
pool_names = [
constants.METADATA_POOL,
constants.DEFAULT_BLOCKPOOL,
constants.DATA_POOL,
]
crush_rules = [
rule for rule in crush_dump["rules"] if rule["rule_name"] in pool_names
]
for crush_rule in crush_rules:
assert [
item for item in crush_rule["steps"] if item.get("type") == "zone"
], f"{crush_rule['rule_name']} is not with type as zone"
log.info("Verified - pool crush rule is with type: zone")
# TODO: update pvc validation for managed services
if not (managed_service or hci_cluster):
log.info("Validate cluster on PVC")
validate_cluster_on_pvc()
# Verify ceph health
log.info("Verifying ceph health")
health_check_tries = 20
health_check_delay = 30
if post_upgrade_verification:
# In case of upgrade with FIO we have to wait longer time to see
# health OK. See discussion in BZ:
# https://bugzilla.redhat.com/show_bug.cgi?id=1817727
health_check_tries = 180
# TODO: Enable the check when a solution is identified for tools pod on FaaS consumer
if not (fusion_aas_consumer or hci_cluster):
# Temporarily disable health check for hci until we have enough healthy clusters
assert utils.ceph_health_check(
namespace, health_check_tries, health_check_delay
)
# Let's wait for storage system after ceph health is OK to prevent fails on
# Progressing': 'True' state.
if not (fusion_aas or client_cluster):
verify_storage_system()
if config.ENV_DATA.get("fips"):
# In case that fips is enabled when deploying,
# a verification of the installation of it will run
# on all running state pods
check_fips_enabled()
if config.ENV_DATA.get("encryption_at_rest"):
osd_encryption_verification()
if config.DEPLOYMENT.get("kms_deployment"):
kms = KMS.get_kms_deployment()
kms.post_deploy_verification()
if config.ENV_DATA.get("VAULT_CA_ONLY", None):
verify_kms_ca_only()
if not (fusion_aas_consumer or client_cluster):
storage_cluster_obj = get_storage_cluster()
is_flexible_scaling = (
storage_cluster_obj.get()["items"][0]
.get("spec")
.get("flexibleScaling", False)
)
if is_flexible_scaling is True:
failure_domain = storage_cluster_obj.data["items"][0]["status"][
"failureDomain"
]
assert failure_domain == "host", (
f"The expected failure domain on cluster with flexible scaling is 'host',"
f" the actaul failure domain is {failure_domain}"
)
if config.ENV_DATA.get("is_multus_enabled"):
verify_multus_network()
# validation in case of openshift-cert-manager installed
if config.DEPLOYMENT.get("install_cert_manager"):
# get webhooks
webhook = OCP(kind=constants.WEBHOOK, namespace=defaults.CERT_MANAGER_NAMESPACE)
webhook_names = [
each_webhook["metadata"]["name"] for each_webhook in webhook.get()["items"]
]
log.debug(f"webhooks in the cluster: {webhook_names}")
assert (
constants.ROOK_CEPH_WEBHOOK not in webhook_names
), f"webhook {constants.ROOK_CEPH_WEBHOOK} should be disabled"
log.info(f"[Expected]: {constants.ROOK_CEPH_WEBHOOK} not found in webhooks")
# check rook-ceph-operator logs
rook_ceph_operator_logs = get_logs_rook_ceph_operator()
for line in rook_ceph_operator_logs.splitlines():
if "delete webhook resources since webhook is disabled" in line:
break
else:
assert (
False
), "deleting webhook messages not found in rook-ceph-operator logs"
# Verify in-transit encryption is enabled.
if config.ENV_DATA.get("in_transit_encryption"):
in_transit_encryption_verification()
# Verify Custome Storageclass Names
if config.ENV_DATA.get("custom_default_storageclass_names"):
assert (
check_custom_storageclass_presence()
), "Custom Storageclass Verification Failed."
# Verify olm.maxOpenShiftVersion property
# check ODF version due to upgrades
if ocs_version >= version.VERSION_4_14 and not hci_cluster:
verify_max_openshift_version()
if config.RUN["cli_params"].get("deploy") and not (
config.DEPLOYMENT["external_mode"]
or config.UPGRADE.get("upgrade_ocs_version")
or config.UPGRADE.get("upgrade_ocs_registry_image")
):
device_class = get_device_class()
verify_storage_device_class(device_class)
verify_device_class_in_osd_tree(ct_pod, device_class)
# RDR with globalnet submariner
if config.MULTICLUSTER.get(
"multicluster_mode"
) == "regional-dr" and get_primary_cluster_config().ENV_DATA.get(
"enable_globalnet", True
):
validate_serviceexport()
# Verify the owner of CSI deployments and daemonsets
csi_owner_name = (
constants.CLIENT_OPERATOR_CONFIGMAP
if hci_cluster
else constants.ROOK_CEPH_OPERATOR
)
if ocs_version >= version.VERSION_4_17 and hci_cluster:
provisioner_deployment_and_owner_names = {
f"{constants.CEPHFS_PROVISIONER}-ctrlplugin": constants.CEPHFS_PROVISIONER,
f"{constants.RBD_PROVISIONER}-ctrlplugin": constants.RBD_PROVISIONER,
}
nodeplugin_daemonset_and_owner_names = {
f"{constants.CEPHFS_PROVISIONER}-nodeplugin": constants.CEPHFS_PROVISIONER,
f"{constants.RBD_PROVISIONER}-nodeplugin": constants.RBD_PROVISIONER,
}
csi_owner_kind = constants.DRIVER
else:
provisioner_deployment_and_owner_names = {
"csi-cephfsplugin-provisioner": csi_owner_name,
"csi-rbdplugin-provisioner": csi_owner_name,
}
nodeplugin_daemonset_and_owner_names = {
"csi-cephfsplugin": csi_owner_name,
"csi-rbdplugin": csi_owner_name,
}
csi_owner_kind = constants.CONFIGMAP if hci_cluster else constants.DEPLOYMENT
deployment_kind = OCP(kind=constants.DEPLOYMENT, namespace=namespace)
daemonset_kind = OCP(kind=constants.DAEMONSET, namespace=namespace)
for (
provisioner_name,
csi_owner_name,
) in provisioner_deployment_and_owner_names.items():
provisioner_deployment = deployment_kind.get(resource_name=provisioner_name)
owner_references = provisioner_deployment["metadata"].get("ownerReferences")
assert (
len(owner_references) == 1
), f"Found more than 1 or none owner reference for {constants.DEPLOYMENT} {provisioner_name}"
assert (
owner_references[0].get("kind") == csi_owner_kind
), f"Owner reference of {constants.DEPLOYMENT} {provisioner_name} is not of kind {csi_owner_kind}"
assert (
owner_references[0].get("name") == csi_owner_name
), f"Owner reference of {constants.DEPLOYMENT} {provisioner_name} is not {csi_owner_name} {csi_owner_kind}"
log.info("Verified the ownerReferences CSI provisioner deployments")
for plugin_name, csi_owner_name in nodeplugin_daemonset_and_owner_names.items():
plugin_daemonset = daemonset_kind.get(resource_name=plugin_name)
owner_references = plugin_daemonset["metadata"].get("ownerReferences")
assert (
len(owner_references) == 1
), f"Found more than 1 or none owner reference for {constants.DAEMONSET} {plugin_name}"
assert (
owner_references[0].get("kind") == csi_owner_kind
), f"Owner reference of {constants.DAEMONSET} {plugin_name} is not of kind {csi_owner_kind}"
assert (
owner_references[0].get("name") == csi_owner_name
), f"Owner reference of {constants.DAEMONSET} {plugin_name} is not {csi_owner_name} {csi_owner_kind}"
log.info("Verified the ownerReferences CSI plugin daemonsets")
def mcg_only_install_verification(ocs_registry_image=None):
"""
Verification for successful MCG only deployment
Args:
ocs_registry_image (str): Specific image to check if it was installed
properly.
"""
log.info("Verifying MCG Only installation")
basic_verification(ocs_registry_image)
verify_storage_system()
verify_backing_store()
verify_mcg_only_pods()
def basic_verification(ocs_registry_image=None):
"""
Basic verification which is needed for Full deployment and MCG only deployment
Args:
ocs_registry_image (str): Specific image to check if it was installed
properly.
"""
verify_ocs_csv(ocs_registry_image)
verify_storage_cluster()
verify_noobaa_endpoint_count()
verify_storage_cluster_images()
def verify_ocs_csv(ocs_registry_image=None):
"""
OCS CSV verification ( succeeded state )
Args:
ocs_registry_image (str): Specific image to check if it was installed
properly.
"""
hci_managed_service = (
config.ENV_DATA["platform"].lower() in constants.HCI_PC_OR_MS_PLATFORM
)
log.info("verifying ocs csv")
# Verify if OCS CSV has proper version.
ocs_csv = get_ocs_csv()
csv_version = ocs_csv.data["spec"]["version"]
ocs_version = version.get_semantic_ocs_version_from_config()
if not hci_managed_service:
log.info(f"Check if OCS version: {ocs_version} matches with CSV: {csv_version}")
assert (
f"{ocs_version}" in csv_version
), f"OCS version: {ocs_version} mismatch with CSV version {csv_version}"
# Verify if OCS CSV has the same version in provided CI build.
ocs_registry_image = ocs_registry_image or config.DEPLOYMENT.get(
"ocs_registry_image"
)
if ocs_registry_image and ocs_registry_image.endswith(".ci"):
ocs_registry_image = ocs_registry_image.rsplit(":", 1)[1].split("-")[0]
log.info(
f"Check if OCS registry image: {ocs_registry_image} matches with "
f"CSV: {csv_version}"
)
ignore_csv_mismatch = config.DEPLOYMENT.get("ignore_csv_mismatch")
if ignore_csv_mismatch:
log.info(
"The possible mismatch will be ignored as you deployed "
"the different version than the default version from the CSV"
)
else:
assert ocs_registry_image in csv_version, (
f"OCS registry image version: {ocs_registry_image} mismatch "
f"with CSV version {csv_version}"
)
@retry(AssertionError, 60, 10, 1)
def verify_storage_system():
"""
Verify storage system status
"""
hci_managed_service = (
config.ENV_DATA["platform"].lower() in constants.HCI_PC_OR_MS_PLATFORM
)
live_deployment = config.DEPLOYMENT.get("live_deployment")
ocp_version = version.get_semantic_ocp_version_from_config()
ocs_version = version.get_semantic_ocs_version_from_config()
if live_deployment and (
(ocp_version == version.VERSION_4_10 and ocs_version == version.VERSION_4_9)
or (ocp_version == version.VERSION_4_11 and ocs_version == version.VERSION_4_10)
):
log.warning(
"Because of the BZ 2075422, we are skipping storage system validation!"
)
return
if config.UPGRADE.get("upgrade_ocs_version"):
upgrade_ocs_version = version.get_semantic_version(
config.UPGRADE.get("upgrade_ocs_version"), only_major_minor=True
)
if live_deployment and (
(
ocp_version == version.VERSION_4_10
and upgrade_ocs_version == version.VERSION_4_10
)
or (
ocp_version == version.VERSION_4_11
and upgrade_ocs_version == version.VERSION_4_11
)
):
log.warning(
"Because of the BZ 2075422, we are skipping storage system validation after upgrade"
)
return
if ocs_version >= version.VERSION_4_9 and not hci_managed_service:
log.info("Verifying storage system status")
storage_system = OCP(
kind=constants.STORAGESYSTEM, namespace=config.ENV_DATA["cluster_namespace"]
)
storage_system_data = storage_system.get()
storage_system_status = {}
for condition in storage_system_data["items"][0]["status"]["conditions"]:
storage_system_status[condition["type"]] = condition["status"]
log.debug(f"storage system status: {storage_system_status}")
assert storage_system_status == constants.STORAGE_SYSTEM_STATUS, (
f"Storage System status is not in expected state. Expected {constants.STORAGE_SYSTEM_STATUS}"
f" but found {storage_system_status}"
)
def verify_storage_cluster():
"""
Verify storage cluster status
"""
with config.RunWithProviderConfigContextIfAvailable():
storage_cluster_name = config.ENV_DATA["storage_cluster_name"]