mirror of
https://github.com/tailscale/tailscale.git
synced 2025-01-07 08:07:42 +00:00
hostinfo: add fly.io detection
Signed-off-by: Denton Gentry <dgentry@tailscale.com>
This commit is contained in:
parent
0796c53404
commit
26c1183941
@ -28,6 +28,7 @@
|
|||||||
Heroku = EnvType("hr")
|
Heroku = EnvType("hr")
|
||||||
AzureAppService = EnvType("az")
|
AzureAppService = EnvType("az")
|
||||||
AWSFargate = EnvType("fg")
|
AWSFargate = EnvType("fg")
|
||||||
|
FlyDotIo = EnvType("fly")
|
||||||
)
|
)
|
||||||
|
|
||||||
var envType atomic.Value // of EnvType
|
var envType atomic.Value // of EnvType
|
||||||
@ -57,6 +58,9 @@ func getEnvType() EnvType {
|
|||||||
if inAWSFargate() {
|
if inAWSFargate() {
|
||||||
return AWSFargate
|
return AWSFargate
|
||||||
}
|
}
|
||||||
|
if inFlyDotIo() {
|
||||||
|
return FlyDotIo
|
||||||
|
}
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -126,3 +130,10 @@ func inAWSFargate() bool {
|
|||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func inFlyDotIo() bool {
|
||||||
|
if os.Getenv("FLY_APP_NAME") != "" && os.Getenv("FLY_REGION") != "" {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user