Home › Forums › FABRIC General Questions and Discussion › Issue creating a slice at TACC
- This topic has 4 replies, 2 voices, and was last updated 10 months ago by Komal Thareja.
-
AuthorPosts
-
January 23, 2024 at 2:25 pm #6398
Hello Team,
I tried to run the experiment example “create_l2network_basic_config.ipynb” at site = “TACC” and get the following error, using other sites runs smoothly. I am the maintenance at TACC is over but keep having this issue.
CODE:
from ipaddress import ip_address, IPv4Address, IPv6Address, IPv4Network, IPv6Network
import ipaddressfrom fabrictestbed_extensions.fablib.fablib import FablibManager as fablib_manager
fablib = fablib_manager()
fablib.show_config();
slice_name = ‘MySlice’
site = “TACC”
print(f”Site: {site}”)node1_name = ‘Node1’
node2_name = ‘Node2′network_name=’net1′
#Create Slice
slice = fablib.new_slice(name=slice_name)# Network
net1 = slice.add_l2network(name=network_name, subnet=IPv4Network(“192.168.1.0/24”))# Node1
node1 = slice.add_node(name=node1_name, site=site)
iface1 = node1.add_component(model=’NIC_Basic’, name=’nic1′).get_interfaces()[0]
iface1.set_mode(‘config’)
net1.add_interface(iface1)
iface1.set_ip_addr(IPv4Address(“192.168.1.1”))# Node2
node2 = slice.add_node(name=node2_name, site=site)
iface2 = node2.add_component(model=’NIC_Basic’, name=’nic1′).get_interfaces()[0]
iface2.set_mode(‘config’)
net1.add_interface(iface2)
iface2.set_ip_addr(IPv4Address(“192.168.1.2”))#Submit Slice Request
slice.submit();
ERROR:
failed lease update- all units failed priming: Exception during create for unit: 9d37f657-03b9-4301-803b-7b2804308294 Playbook has failed tasks: Error in creating the server (no further information available)#all units failed priming: Exception during create for unit: 9d37f657-03b9-4301-803b-7b2804308294 Playbook has failed tasks: Error in creating the server (no further information available)#
Regards,
Acheme
January 23, 2024 at 5:52 pm #6400Hi Acheme,
Thank you for reporting this issue. TACC worker
tacc-w1
where VMs were spawned had issues. We have recovered the worker and provisioning should work now.Thanks,
Komal
January 23, 2024 at 11:03 pm #6401I tried again and it creates the slice but sets the network of node interfaces to “None” for some reason.
January 24, 2024 at 9:40 am #6407Hi Acheme,
We are noticing intermittent connectivity issues with TACC switch, resulting in the Network Services failing to provision. That’s resulting the Network being set to None. We are working to resolve this issue and will keep you posted.
Thanks,
Komal
January 24, 2024 at 9:55 am #6408Should be resolved now. I just tried a slice and it worked.
Thanks,
Komal
-
AuthorPosts
- You must be logged in to reply to this topic.