netbox-docker/startup_scripts/135_cluster_groups.py

16 lines
409 B
Python
Raw Normal View History

2021-01-20 06:19:09 +01:00
import sys
from startup_script_utils import load_yaml
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:
sys.exit()
2021-01-20 06:19:09 +01:00
for params in cluster_groups:
cluster_group, created = ClusterGroup.objects.get_or_create(**params)
2021-01-20 06:19:09 +01:00
if created:
print("🗄️ Created Cluster Group", cluster_group.name)