...

Source file src/edge-infra.dev/pkg/sds/remoteaccess/constants/constants.go

Documentation: edge-infra.dev/pkg/sds/remoteaccess/constants

     1  package constants
     2  
     3  const (
     4  	// Namespace where vpn application is deployed
     5  	VPNNamespace = "vpn"
     6  	// Service name for the wireguard relay
     7  	RelayName = "wireguard-relay"
     8  	// Service name for the wireguard store
     9  	StoreName = "wireguard-store"
    10  	// Service name for the wireguard client
    11  	ClientName = "wireguard-client"
    12  
    13  	WireguardControllerName = "wireguardctl"
    14  
    15  	WireguardContainerName = "wireguard"
    16  
    17  	MTU = "1330"
    18  
    19  	K8sNameLabel = "app.kubernetes.io/name"
    20  
    21  	GCPServiceAccountAnnotation   = "iam.gke.io/gcp-service-account"
    22  	CNRMGoogleProjectIDAnnotation = "cnrm.cloud.google.com/project-id"
    23  
    24  	Kustomize = "kustomize"
    25  
    26  	VPNConfigMapName    = "wireguard-cidr"
    27  	VPNConfigMapCIDRKey = "CIDR"
    28  
    29  	WireguardSecretField = "wg0.conf"
    30  
    31  	SecretValidityEnvField = "VALIDITY_PERIOD"
    32  )
    33  

View as plain text