package consts import "time" const ( HPACPUDefaultAverageUtilization = 80 DefaultUserId = "default" DefaultOrgId = "default" DynamoServicePort = 8000 DynamoServicePortName = "http" DynamoContainerPortName = "http" DynamoSystemPort = 9090 DynamoSystemPortName = "system" MpiRunSshPort = 2222 EnvDynamoServicePort = "DYNAMO_PORT" KubeLabelDynamoSelector = "nvidia.com/selector" KubeAnnotationEnableGrove = "nvidia.com/enable-grove" KubeLabelDynamoGraphDeploymentName = "nvidia.com/dynamo-graph-deployment-name" KubeLabelDynamoComponent = "nvidia.com/dynamo-component" KubeLabelDynamoNamespace = "nvidia.com/dynamo-namespace" KubeLabelDynamoDeploymentTargetType = "nvidia.com/dynamo-deployment-target-type" KubeLabelDynamoComponentType = "nvidia.com/dynamo-component-type" KubeLabelValueFalse = "false" KubeLabelValueTrue = "true" KubeLabelDynamoComponentPod = "nvidia.com/dynamo-component-pod" KubeResourceGPUNvidia = "nvidia.com/gpu" DynamoDeploymentConfigEnvVar = "DYN_DEPLOYMENT_CONFIG" ComponentTypePlanner = "planner" ComponentTypeFrontend = "frontend" ComponentTypeWorker = "worker" ComponentTypeDefault = "default" PlannerServiceAccountName = "planner-serviceaccount" DefaultIngressSuffix = "local" DefaultGroveTerminationDelay = 15 * time.Minute // Metrics related constants KubeAnnotationEnableMetrics = "nvidia.com/enable-metrics" // User-provided annotation to control metrics KubeLabelMetricsEnabled = "nvidia.com/metrics-enabled" // Controller-managed label for pod selection KubeValueNameSharedMemory = "shared-memory" DefaultSharedMemoryMountPath = "/dev/shm" DefaultSharedMemorySize = "8Gi" // Grove multinode role suffixes GroveRoleSuffixLeader = "ldr" GroveRoleSuffixWorker = "wkr" MpiRunSshSecretName = "mpi-run-ssh-secret" ) type MultinodeDeploymentType string const ( MultinodeDeploymentTypeGrove MultinodeDeploymentType = "grove" MultinodeDeploymentTypeLWS MultinodeDeploymentType = "lws" )