package constants const ( // Namespace where vpn application is deployed VPNNamespace = "vpn" // Service name for the wireguard relay RelayName = "wireguard-relay" // Service name for the wireguard store StoreName = "wireguard-store" // Service name for the wireguard client ClientName = "wireguard-client" WireguardControllerName = "wireguardctl" WireguardContainerName = "wireguard" MTU = "1330" K8sNameLabel = "app.kubernetes.io/name" GCPServiceAccountAnnotation = "iam.gke.io/gcp-service-account" CNRMGoogleProjectIDAnnotation = "cnrm.cloud.google.com/project-id" Kustomize = "kustomize" VPNConfigMapName = "wireguard-cidr" VPNConfigMapCIDRKey = "CIDR" WireguardSecretField = "wg0.conf" SecretValidityEnvField = "VALIDITY_PERIOD" )