Mirantis Container Cloud (MCC) becomes part of Mirantis OpenStack for Kubernetes (MOSK)!
Starting with MOSK 25.2, the MOSK documentation set covers all product layers, including MOSK management (formerly Container Cloud). This means everything you need is in one place. Some legacy names may remain in the code and documentation and will be updated in future releases. The separate Container Cloud documentation site will be retired, so please update your bookmarks for continued easy access to the latest content.
Delete a vRouter node¶
Tungsten Fabric vRouter collocates with the OpenStack compute node. Therefore, to delete the vRouter node from your cluster, follow the node deletion procedure in Delete a compute node.
Additionally, you need to remove the vhost0 OpenStack port and
the Node object of the deleted node from the Tungsten Fabric database:
Log in to the
keystone-clientpod in theopenstacknamespace through the command line.Obtain the OpenStack token required to authenticate with the Tungsten Fabric API service:
TOKEN=$(openstack token issue | awk '/ id / {print $4}')
Obtain the list of vRouter nodes to retrieve the link for the deleted node:
curl -s -H "X-Auth-Token: ${TOKEN}" http://tf-config-api.tf.svc:8082/virtual-routers | jq
Obtain the UUID of the
vhost0port to be removed:curl -s -H "X-Auth-Token: ${TOKEN}" http://tf-config-api.tf.svc:8082/virtual-router/<VROUTER_UUID> | jq '.["virtual-router"]["virtual_machine_interfaces"][0]["uuid"]'
Delete the
vhost0OpenStack port through the Openstack Horizon or CLI:openstack port delete <VHOST0_PORT_UUID>
Delete the vRouter
Nodeobject from the Tungsten Fabric configuration database:curl -s -X DELETE -H "X-Auth-Token: ${TOKEN}" http://tf-config-api.tf.svc:8082/virtual-router/<VROUTER_NODE_UUID>