...
1 package constants
2
3 const (
4
5 VPNNamespace = "vpn"
6
7 RelayName = "wireguard-relay"
8
9 StoreName = "wireguard-store"
10
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