-
Notifications
You must be signed in to change notification settings - Fork 51
/
env.go
31 lines (21 loc) · 1.14 KB
/
env.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package constants
const (
// AporetoEnvMountPoint is an environment variable which will contain the mount point
AporetoEnvMountPoint = "APORETO_ENV_PROC_MOUNTPOINT"
// AporetoEnvContextSocket stores the path to the context specific socket
AporetoEnvContextSocket = "APORETO_ENV_SOCKET_PATH"
// AporetoEnvStatsChannel stores the path to the stats channel
AporetoEnvStatsChannel = "APORETO_ENV_STATS_CHANNEL_PATH"
// AporetoEnvRPCClientSecret is the secret used between RPC client/server
AporetoEnvRPCClientSecret = "APORETO_ENV_SECRET"
// AporetoEnvStatsSecret is the secret to be used for the stats channel
AporetoEnvStatsSecret = "APORETO_ENV_STATS_SECRET"
// AporetoEnvContainerPID is the PID of the container
AporetoEnvContainerPID = "APORETO_ENV_CONTAINER_PID"
// AporetoEnvNSPath is the path of the network namespace
AporetoEnvNSPath = "APORETO_ENV_NS_PATH"
// AporetoEnvNsenterErrorState stores the error state as reported by remote enforcer
AporetoEnvNsenterErrorState = "APORETO_ENV_NSENTER_ERROR_STATE"
// AporetoEnvNsenterLogs stores the logs as reported by remote enforcer
AporetoEnvNsenterLogs = "APORETO_ENV_NSENTER_LOGS"
)