hostinfo: add an environment type for Replit

Signed-off-by: Anton Tolchanov <anton@tailscale.com>
This commit is contained in:
Anton Tolchanov 2023-01-24 12:14:01 +00:00 committed by Anton Tolchanov
parent e8b695626e
commit 586a88c710
1 changed files with 12 additions and 0 deletions

View File

@ -139,6 +139,7 @@ const (
FlyDotIo = EnvType("fly")
Kubernetes = EnvType("k8s")
DockerDesktop = EnvType("dde")
Replit = EnvType("repl")
)
var envType atomic.Value // of EnvType
@ -226,6 +227,9 @@ func getEnvType() EnvType {
if inDockerDesktop() {
return DockerDesktop
}
if inReplit() {
return Replit
}
return ""
}
@ -313,6 +317,14 @@ func inFlyDotIo() bool {
return false
}
func inReplit() bool {
// https://docs.replit.com/programming-ide/getting-repl-metadata
if os.Getenv("REPL_OWNER") != "" && os.Getenv("REPL_SLUG") != "" {
return true
}
return false
}
func inKubernetes() bool {
if os.Getenv("KUBERNETES_SERVICE_HOST") != "" && os.Getenv("KUBERNETES_SERVICE_PORT") != "" {
return true