netbox-docker/startup_scripts/165_cluster_groups.py

16 lines
409 B
Python
Raw Normal View History

2020-12-30 04:10:19 +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")
2020-12-30 04:10:19 +01:00
if cluster_groups is None:
sys.exit()
2020-12-30 04:10:19 +01:00
for params in cluster_groups:
cluster_group, created = ClusterGroup.objects.get_or_create(**params)
2020-12-30 04:10:19 +01:00
if created:
print("🗄️ Created Cluster Group", cluster_group.name)