我正在使用 VPC 网络部署 Cloudfunction,如下所示:
gcloud beta functions deploy my-function
--trigger-http
--region europe-west1
--memory 128MB
--runtime nodejs16
--entry-point entrypoint
--allow-unauthenticated
# needed to access compute instances
# https://console.cloud.google.com/networking/connectors/list
--vpc-connector cloud-function-connector
# vpc connector should be used only to access private network
--egress-settings private-ranges-only
现在,如果我的 Cloudfunction 使用计算资源的 IP 地址,我可以轻松访问它们。但是,当我使用他们的主机名时,DNS 无法解析,最终结果为:
Error: getaddrinfo ENOTFOUND my-compute-resource
我需要做什么才能将 DNS 用于我的计算实例?