OBJECT
Network
Logical networks in Triton model core network configurations to enable Triton to define Virtual Network Interfaces and IP addresses for instances
link GraphQL Schema definition
- type Network {
- # Unique id for this network
- ID :
- # The network name
- String :
- # Whether this a public or private (rfc1918) network'
- Boolean :
- # Whether this network is created on a fabric'
- Boolean :
- # Description of this network
- String :
- # A CIDR formatted string that describes the network'
- String :
- # The first IP on the network that may be assigned'
- String :
- # The last IP on the network that may be assigned'
- String :
- # Optional Gateway IP address'
- String :
- # Optional Resolver IP addresses'
- String] : [
- # Optional Static routes for hosts on this network'
- KeyValue] : [
- # Provision internet NAT zone on gateway address',
- Boolean :
- # machines that are attached in this network
- Machine] : [
- }
link Require by
- ImageRequirementsA grouping of various requirements for provisioning a VM with this image
- MachineAn image contains the software packages that will be available on newly-provisioned instance. In the case of hardware virtual machines, the image also includes the operating system
- Mutation
- NICLogical networks are used both on head nodes and compute nodes, and are associated with physical interfaces by using a system called NIC Tags
- Query