arcbox-constants 0.4.10

Shared protocol and runtime constants for ArcBox
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Default vsock port for ArcBox guest agent RPC.
pub const AGENT_PORT: u32 = 1024;

/// Guest Docker API vsock proxy port.
pub const DOCKER_API_VSOCK_PORT: u32 = 2375;

/// Guest Kubernetes API vsock proxy port.
pub const KUBERNETES_API_VSOCK_PORT: u32 = 16443;

/// Host localhost port for the ArcBox Kubernetes API proxy.
pub const KUBERNETES_API_HOST_PORT: u16 = 16443;

/// Guest localhost port for the Kubernetes API server.
pub const KUBERNETES_API_GUEST_PORT: u16 = 6443;