2021-01-20 06:19:09 +01:00
|
|
|
import sys
|
|
|
|
|
2022-04-05 08:34:08 +02:00
|
|
|
from startup_script_utils import load_yaml, split_params
|
2021-02-08 11:59:33 +01:00
|
|
|
from virtualization.models import ClusterGroup
|
|
|
|
|
|
|
|
cluster_groups = load_yaml("/opt/netbox/initializers/cluster_groups.yml")
|
2021-01-20 06:19:09 +01:00
|
|
|
|
|
|
|
if cluster_groups is None:
|
2021-02-08 11:59:33 +01:00
|
|
|
sys.exit()
|
2021-01-20 06:19:09 +01:00
|
|
|
|
|
|
|
for params in cluster_groups:
|
2022-04-05 08:34:08 +02:00
|
|
|
matching_params, defaults = split_params(params)
|
|
|
|
cluster_group, created = ClusterGroup.objects.get_or_create(
|
|
|
|
**matching_params, defaults=defaults
|
|
|
|
)
|
2021-01-20 06:19:09 +01:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
if created:
|
|
|
|
print("🗄️ Created Cluster Group", cluster_group.name)
|