Validation workflow for R&E LHCONE subscription objects.
validate_r_and_e_lhcone()
Validate an existing R&E LHCONE subscription.
Source code in gso/workflows/l3_core_service/r_and_e_lhcone/validate_r_and_e_lhcone.py
| @validate_workflow("Validate R&E LHCONE")
def validate_r_and_e_lhcone() -> StepList:
"""Validate an existing R&E LHCONE subscription."""
return (
begin
>> build_fqdn_list
>> anonymous_lso_interaction(validate_sbp_config)
>> anonymous_lso_interaction(validate_bgp_peers)
>> validate_dns_records
)
|