@@ -3166,6 +3166,7 @@ def cimc_compatibilty_check(tversion, **kwargs):
31663166 return Result (result = result , headers = headers , data = data , recommended_action = recommended_action , doc_url = doc_url )
31673167
31683168
3169+ # Subprocess Check - icurl
31693170@check_wrapper (check_title = "Intersight Device Connector upgrade status" )
31703171def intersight_upgrade_status_check (** kwargs ):
31713172 result = FAIL_UF
@@ -3518,6 +3519,7 @@ def internal_vlanpool_check(tversion, **kwargs):
35183519 return Result (result = result , headers = headers , data = data , recommended_action = recommended_action , doc_url = doc_url )
35193520
35203521
3522+ # Subprocess check - openssl
35213523@check_wrapper (check_title = "APIC CA Cert Validation" )
35223524def apic_ca_cert_validation (** kwargs ):
35233525 result = FAIL_O
@@ -5208,7 +5210,9 @@ def isis_database_byte_check(tversion, **kwargs):
52085210 return Result (result = NA , msg = VER_NOT_AFFECTED )
52095211 return Result (result = result , headers = headers , data = data , recommended_action = recommended_action , doc_url = doc_url )
52105212
5211- @check_wrapper (check_title = 'Large APIC Database' )
5213+
5214+ # Subprocess check - cat + acidiag
5215+ @check_wrapper (check_title = 'APIC Database Size' )
52125216def large_apic_database_check (cversion , ** kwargs ):
52135217 title = 'Large APIC Database'
52145218 result = PASS
@@ -5360,7 +5364,6 @@ def get_checks(api_only, debug_function):
53605364 post_upgrade_cb_check ,
53615365 validate_32_64_bit_image_check ,
53625366 fabric_link_redundancy_check ,
5363- large_apic_database_check ,
53645367
53655368 # Faults
53665369 apic_disk_space_faults_check ,
@@ -5414,7 +5417,6 @@ def get_checks(api_only, debug_function):
54145417 telemetryStatsServerP_object_check ,
54155418 llfc_susceptibility_check ,
54165419 internal_vlanpool_check ,
5417- apic_ca_cert_validation ,
54185420 fabricdomain_name_check ,
54195421 sup_hwrev_check ,
54205422 sup_a_high_memory_check ,
@@ -5439,13 +5441,17 @@ def get_checks(api_only, debug_function):
54395441 conn_checks = [
54405442 # General
54415443 apic_version_md5_check ,
5444+ large_apic_database_check ,
5445+
54425446
54435447 # Faults
54445448 standby_apic_disk_space_check ,
54455449 apic_ssd_check ,
54465450
54475451 # Bugs
54485452 observer_db_size_check ,
5453+ apic_ca_cert_validation ,
5454+
54495455
54505456 ]
54515457 if debug_function :
0 commit comments