2020-10-17 14:51:38 -05:00
|
|
|
import sys
|
|
|
|
|
2019-07-04 07:10:56 -05:00
|
|
|
from ipam.models import VRF
|
2022-04-05 01:34:08 -05:00
|
|
|
from startup_script_utils import (
|
|
|
|
load_yaml,
|
|
|
|
pop_custom_fields,
|
|
|
|
set_custom_fields_values,
|
|
|
|
split_params,
|
|
|
|
)
|
2019-07-04 07:10:56 -05:00
|
|
|
from tenancy.models import Tenant
|
2020-02-05 08:31:01 -06:00
|
|
|
|
2021-02-08 04:59:33 -06:00
|
|
|
vrfs = load_yaml("/opt/netbox/initializers/vrfs.yml")
|
2019-07-04 07:10:56 -05:00
|
|
|
|
2020-02-05 08:31:01 -06:00
|
|
|
if vrfs is None:
|
2021-02-08 04:59:33 -06:00
|
|
|
sys.exit()
|
2019-07-04 07:10:56 -05:00
|
|
|
|
2022-04-05 01:34:08 -05:00
|
|
|
match_params = ["name", "rd"]
|
2021-02-08 04:59:33 -06:00
|
|
|
optional_assocs = {"tenant": (Tenant, "name")}
|
2019-07-04 07:10:56 -05:00
|
|
|
|
2020-02-05 08:31:01 -06:00
|
|
|
for params in vrfs:
|
2021-02-08 04:59:33 -06:00
|
|
|
custom_field_data = pop_custom_fields(params)
|
2019-07-04 07:10:56 -05:00
|
|
|
|
2021-02-08 04:59:33 -06:00
|
|
|
for assoc, details in optional_assocs.items():
|
|
|
|
if assoc in params:
|
|
|
|
model, field = details
|
|
|
|
query = {field: params.pop(assoc)}
|
2019-07-04 07:10:56 -05:00
|
|
|
|
2021-02-08 04:59:33 -06:00
|
|
|
params[assoc] = model.objects.get(**query)
|
2019-07-04 07:10:56 -05:00
|
|
|
|
2022-04-05 01:34:08 -05:00
|
|
|
matching_params, defaults = split_params(params)
|
|
|
|
vrf, created = VRF.objects.get_or_create(**matching_params, defaults=defaults)
|
2019-07-04 07:10:56 -05:00
|
|
|
|
2021-02-08 04:59:33 -06:00
|
|
|
if created:
|
|
|
|
print("📦 Created VRF", vrf.name)
|
2022-04-05 01:45:22 -05:00
|
|
|
|
|
|
|
set_custom_fields_values(vrf, custom_field_data)
|