ves-io-schema-network_interface-API-Create

Examples of creating network_interface

Usecase:

Create network-interface-1

Request using vesctl:

vesctl configuration create network_interface -i network_interface.yaml

where file network_interface.yaml has following contents (network_interface.CreateRequest):

RequestJSON:

          {
    "metadata": {
        "name": "network-interface-1",
        "namespace": "system"
    },
    "spec": {
        "ethernet_interface": {
            "device": "eth0",
            "cluster": {},
            "untagged": {},
            "dhcp_client": {},
            "site_local_inside_network": {},
            "mtu": 1500,
            "priority": 20,
            "is_primary": {}
        }
    }
}
        

vesctl yaml response:

ResponseJSON:

          {
    "metadata": {
        "name": "network-interface-1",
        "namespace": "system",
        "labels": {},
        "annotations": {},
        "description": "",
        "disable": false
    },
    "system_metadata": {
        "uid": "073df897-6d14-41ca-bb9a-043ca3b992fa",
        "creation_timestamp": "2024-03-21T14:06:15.992566Z",
        "deletion_timestamp": null,
        "modification_timestamp": null,
        "initializers": null,
        "finalizers": [],
        "tenant": "acmecorp",
        "creator_class": "examplesvc",
        "creator_id": "examplesvc",
        "object_index": 0,
        "owner_view": null,
        "labels": {}
    },
    "spec": {
        "type": "NETWORK_INTERFACE_ETHERNET",
        "mtu": 0,
        "virtual_network": [],
        "dhcp_address": "NETWORK_INTERFACE_DHCP_DISABLE",
        "static_addresses": [],
        "default_gateway": null,
        "DNS_server": null,
        "DHCP_server": "NETWORK_INTERFACE_DHCP_SERVER_DISABLE",
        "vlan_tagging": "NETWORK_INTERFACE_VLAN_TAGGING_DISABLE",
        "device_name": "",
        "parent_network_interface": [],
        "vlan_tag": 0,
        "tunnel": null,
        "priority": 0,
        "address_allocator": [],
        "interface_ip_map": {},
        "is_primary": false
    }
}
        

Request using curl:

          curl -X 'POST' -d '{"metadata":{"name":"network-interface-1","namespace":"system"},"spec":{"ethernet_interface":{"device":"eth0","cluster":{},"untagged":{},"dhcp_client":{},"site_local_inside_network":{},"mtu":1500,"priority":20,"is_primary":{}}}}' -H 'Content-Type: application/json' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_2__8qnt6fwd5dvglr1xqq6l8b7w0000gp_T_go-build3109416560_b001_apidocs.test/host=C02FN35BMD6R/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/system/network_interfaces'
        

curl response:

          HTTP/1.1 200 OK
Content-Length: 1179
Content-Type: application/json
Date: Thu, 21 Mar 2024 14:06:16 GMT
Vary: Accept-Encoding

{
  "metadata": {
    "name": "network-interface-1",
    "namespace": "system",
    "labels": {
    },
    "annotations": {
    },
    "description": "",
    "disable": false
  },
  "system_metadata": {
    "uid": "073df897-6d14-41ca-bb9a-043ca3b992fa",
    "creation_timestamp": "2024-03-21T14:06:15.992566Z",
    "deletion_timestamp": null,
    "modification_timestamp": null,
    "initializers": null,
    "finalizers": [
    ],
    "tenant": "acmecorp",
    "creator_class": "examplesvc",
    "creator_id": "examplesvc",
    "object_index": 0,
    "owner_view": null,
    "labels": {
    }
  },
  "spec": {
    "type": "NETWORK_INTERFACE_ETHERNET",
    "mtu": 0,
    "virtual_network": [
    ],
    "dhcp_address": "NETWORK_INTERFACE_DHCP_DISABLE",
    "static_addresses": [
    ],
    "default_gateway": null,
    "DNS_server": null,
    "DHCP_server": "NETWORK_INTERFACE_DHCP_SERVER_DISABLE",
    "vlan_tagging": "NETWORK_INTERFACE_VLAN_TAGGING_DISABLE",
    "device_name": "",
    "parent_network_interface": [
    ],
    "vlan_tag": 0,
    "tunnel": null,
    "priority": 0,
    "address_allocator": [
    ],
    "interface_ip_map": {
    },
    "is_primary": false
  }
}