2022-04-06 10:36:58 +02:00
|
|
|
/*
|
|
|
|
Package constants contains the constants used by Constellation.
|
|
|
|
Constants should never be overwritable by command line flags or configuration files.
|
|
|
|
*/
|
|
|
|
package constants
|
|
|
|
|
2022-05-04 14:32:34 +02:00
|
|
|
import "time"
|
|
|
|
|
2022-04-06 10:36:58 +02:00
|
|
|
const (
|
2022-04-12 14:07:17 +00:00
|
|
|
//
|
|
|
|
// Constellation.
|
|
|
|
//
|
|
|
|
|
|
|
|
// ConstellationNameLength is the maximum length of a Constellation's name.
|
|
|
|
ConstellationNameLength = 37
|
|
|
|
// ConstellationMasterSecretStoreName is the name for the Constellation secrets in Kubernetes.
|
|
|
|
ConstellationMasterSecretStoreName = "constellation-mastersecret"
|
|
|
|
// ConstellationMasterSecretKey is the name of the key for master secret in the master secret store secret.
|
|
|
|
ConstellationMasterSecretKey = "mastersecret"
|
|
|
|
|
2022-04-06 10:36:58 +02:00
|
|
|
//
|
|
|
|
// Ports.
|
|
|
|
//
|
|
|
|
|
|
|
|
CoordinatorPort = 9000
|
|
|
|
EnclaveSSHPort = 2222
|
|
|
|
SSHPort = 22
|
|
|
|
WireguardPort = 51820
|
|
|
|
NVMEOverTCPPort = 8009
|
2022-04-26 17:09:03 +02:00
|
|
|
// Default NodePort Range
|
|
|
|
// https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
|
2022-05-24 10:04:42 +02:00
|
|
|
NodePortFrom = 30000
|
|
|
|
NodePortTo = 32767
|
|
|
|
KubernetesPort = 6443
|
2022-04-06 10:36:58 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Filenames.
|
|
|
|
//
|
|
|
|
|
|
|
|
StateFilename = "constellation-state.json"
|
2022-05-12 15:14:52 +02:00
|
|
|
ConfigFilename = "constellation-conf.yaml"
|
2022-05-13 16:06:57 +02:00
|
|
|
DebugdConfigFilename = "cdbg-conf.yaml"
|
2022-04-06 10:36:58 +02:00
|
|
|
AdminConfFilename = "constellation-admin.conf"
|
|
|
|
MasterSecretFilename = "constellation-mastersecret.base64"
|
|
|
|
WGQuickConfigFilename = "wg0.conf"
|
2022-05-02 13:21:07 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Cryptographic constants.
|
|
|
|
//
|
2022-04-12 14:07:17 +00:00
|
|
|
|
|
|
|
StateDiskKeyLength = 32
|
|
|
|
// DerivedKeyLengthDefault is the default length in bytes for KMS derived keys.
|
2022-05-10 12:35:17 +02:00
|
|
|
DerivedKeyLengthDefault = 32
|
2022-04-12 14:07:17 +00:00
|
|
|
// MasterSecretLengthDefault is the default length in bytes for CLI generated master secrets.
|
|
|
|
MasterSecretLengthDefault = 32
|
|
|
|
// MasterSecretLengthMin is the minimal length in bytes for user provided master secrets.
|
|
|
|
MasterSecretLengthMin = 16
|
2022-05-04 08:50:50 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// CLI.
|
|
|
|
//
|
|
|
|
|
|
|
|
MinControllerCount = 1
|
|
|
|
MinWorkerCount = 1
|
2022-05-05 08:48:56 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Kubernetes.
|
|
|
|
//
|
|
|
|
|
|
|
|
// KubernetesVersion installed by kubeadm.
|
2022-05-10 12:35:17 +02:00
|
|
|
KubernetesVersion = "stable-1.23"
|
2022-05-04 14:32:34 +02:00
|
|
|
KubernetesJoinTokenTTL = 15 * time.Minute
|
2022-04-12 14:07:17 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// VPN.
|
|
|
|
//
|
|
|
|
|
|
|
|
// WireguardAdminMTU is the MTU designated for the admin's WireGuard interface.
|
|
|
|
// WireGuard doesn't support Path MTU Discovery. Thus, its default MTU can be too high on some networks.
|
|
|
|
WireguardAdminMTU = 1300
|
2022-04-06 10:36:58 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// CliVersion is the version of the CLI. Left as a separate variable to allow override during build.
|
|
|
|
var CliVersion = "0.0.0"
|