github.com/juju/juju@v0.0.0-20240430160146-1752b71fcf00/caas/kubernetes/provider/constants/environment.go (about) 1 // Copyright 2020 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 package constants 5 6 const ( 7 // OperatorPodIPEnvName is the environment name for operator pod IP. 8 OperatorPodIPEnvName = "JUJU_OPERATOR_POD_IP" 9 10 // OperatorServiceIPEnvName is the environment name for operator service IP. 11 OperatorServiceIPEnvName = "JUJU_OPERATOR_SERVICE_IP" 12 13 // OperatorNamespaceEnvName is the environment name for k8s namespace the operator is in. 14 OperatorNamespaceEnvName = "JUJU_OPERATOR_NAMESPACE" 15 )