add cluster group startup script
This commit is contained in:
parent
621fa12934
commit
90018fc6d7
4
initializers/cluster_groups.yml
Normal file
4
initializers/cluster_groups.yml
Normal file
@ -0,0 +1,4 @@
|
||||
# - name: Group 1
|
||||
# slug: group-1
|
||||
# - name: Group 2
|
||||
# slug: group-2
|
@ -1,5 +1,6 @@
|
||||
# - name: cluster1
|
||||
# type: Hyper-V
|
||||
# group: Group 1
|
||||
# - name: cluster2
|
||||
# type: Hyper-V
|
||||
# site: SING 1
|
||||
|
14
startup_scripts/165_cluster_groups.py
Normal file
14
startup_scripts/165_cluster_groups.py
Normal file
@ -0,0 +1,14 @@
|
||||
from virtualization.models import ClusterGroup
|
||||
from startup_script_utils import load_yaml
|
||||
import sys
|
||||
|
||||
cluster_groups = load_yaml('/opt/netbox/initializers/cluster_groups.yml')
|
||||
|
||||
if cluster_groups is None:
|
||||
sys.exit()
|
||||
|
||||
for params in cluster_groups:
|
||||
cluster_group, created = ClusterGroup.objects.get_or_create(**params)
|
||||
|
||||
if created:
|
||||
print("🗄️ Created Cluster Group", cluster_group.name)
|
Loading…
Reference in New Issue
Block a user