mirror of
https://github.com/tailscale/tailscale.git
synced 2024-12-12 03:04:40 +00:00
hostinfo: add EnvType for Kubernetes
Signed-off-by: Maisem Ali <maisem@tailscale.com>
(cherry picked from commit 2662a1c98c
)
This commit is contained in:
parent
d0c3c14a58
commit
ffaa572266
@ -82,6 +82,7 @@ func packageType() string {
|
|||||||
AzureAppService = EnvType("az")
|
AzureAppService = EnvType("az")
|
||||||
AWSFargate = EnvType("fg")
|
AWSFargate = EnvType("fg")
|
||||||
FlyDotIo = EnvType("fly")
|
FlyDotIo = EnvType("fly")
|
||||||
|
Kubernetes = EnvType("k8s")
|
||||||
)
|
)
|
||||||
|
|
||||||
var envType atomic.Value // of EnvType
|
var envType atomic.Value // of EnvType
|
||||||
@ -136,6 +137,9 @@ func getEnvType() EnvType {
|
|||||||
if inFlyDotIo() {
|
if inFlyDotIo() {
|
||||||
return FlyDotIo
|
return FlyDotIo
|
||||||
}
|
}
|
||||||
|
if inKubernetes() {
|
||||||
|
return Kubernetes
|
||||||
|
}
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -212,3 +216,10 @@ func inFlyDotIo() bool {
|
|||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func inKubernetes() bool {
|
||||||
|
if os.Getenv("KUBERNETES_SERVICE_HOST") != "" && os.Getenv("KUBERNETES_SERVICE_PORT") != "" {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user