Skip to content

kite network

Manage virtual networks. Networks provide secure connectivity between your resources.

Aliases: net

create

Create a virtual network.

kite network create <name> [flags]
Flag Description Default
--type Network type: bridge, macvlan, ipvlan bridge
--subnet Subnet CIDR auto-assigned
--range-start DHCP range start
--range-end DHCP range end
--gateway Gateway address
--master Master interface (for macvlan/ipvlan)
--isolated Isolate from internet false
--description, -d Network description
# Basic bridge network
kite network create backend-net

# With custom subnet
kite network create db-net --subnet 10.0.1.0/24

# Isolated network
kite network create internal --isolated --description "Internal services"

list

List networks.

kite network list [--namespace <ns>]

get

Get network details.

kite network get <name> [--namespace <ns>]

update

Update network metadata.

kite network update <name> --description "New description" [--namespace <ns>]

delete

Delete a network.

kite network delete <name> [--yes] [--namespace <ns>]