在尝试使用命令行Google Cloud DNS时尝试更新我的域的托管区域资源记录类型A的外部IP时出现错误... this works fine using the browser based gce console ...当我使用部署应用程序时使用英语Kubernetes它为我提供了一个新的IP,我需要链接到我现有的域DNS,以便人们可以访问我的应用程序,将他们的浏览器指向我的域(example.com)...这就是每次我重新部署我的行动都需要app因此需要自动化
注意 - Cloud DNS区域已存在并且正常运行。我正在尝试更新外部IP地址以匹配新的Kubernetes部署的LoadBalancer Ingress
kubectl describe svc --namespace=ruptureofthemundaneplane | grep Ingress
LoadBalancer Ingress: 104.196.108.178
这是当前状态
gcloud dns record-sets list --zone zone-cubalibre --project ruptureofthemundaneplane
NAME TYPE TTL DATA
example.com. A 60 104.196.108.147
example.com. NS 60 ns-cloud-a1.googledomains.com.,ns-cloud-a2.googledomains.com.,ns-cloud-a3.googledomains.com.,ns-cloud-a4.googledomains.com.
example.com. SOA 60 ns-cloud-a1.googledomains.com. cloud-dns-hostmaster.google.com. 1 21600 3600 1209600 300
admin.example.com. CNAME 60 example.com.
www.admin.example.com. CNAME 60 example.com.
www.example.com. CNAME 60 example.com.
这里只是A型记录
gcloud dns record-sets list --project ruptureofthemundaneplane --zone zone-cubalibre --name "example.com." --type "A"
NAME TYPE TTL DATA
example.com. A 60 104.196.108.147
我需要用新值104.196.108.178替换IP 104.196.108.147 ...所以我发出
gcloud dns record-sets transaction start --zone zone-cubalibre --project ruptureofthemundaneplane
这里我用新的IP地址添加一个交易
gcloud dns record-sets transaction add "104.196.108.178" --name "example.com." --ttl 60 --type "A" --project ruptureofthemundaneplane --zone zone-cubalibre
这是系统生成的yaml文件
cat transaction.yaml
---
additions:
- kind: dns#resourceRecordSet
name: example.com.
rrdatas:
- ns-cloud-a1.googledomains.com. cloud-dns-hostmaster.google.com. 2 21600 3600 1209600
300
ttl: 60
type: SOA
- kind: dns#resourceRecordSet
name: example.com.
rrdatas:
- 104.196.108.178
ttl: 60
type: A
deletions:
- kind: dns#resourceRecordSet
name: example.com.
rrdatas:
- ns-cloud-a1.googledomains.com. cloud-dns-hostmaster.google.com. 1 21600 3600 1209600
300
ttl: 60
type: SOA
为了完整性,我要求系统显示事务缓存
gcloud dns record-sets transaction describe --project ruptureofthemundaneplane --zone zone-cubalibre
...输出
additions:
- kind: dns#resourceRecordSet
name: example.com.
rrdatas:
- ns-cloud-a1.googledomains.com. cloud-dns-hostmaster.google.com. 2 21600 3600 1209600
300
ttl: 60
type: SOA
- kind: dns#resourceRecordSet
name: example.com.
rrdatas:
- 104.196.108.178
ttl: 60
type: A
deletions:
- kind: dns#resourceRecordSet
name: example.com.
rrdatas:
- ns-cloud-a1.googledomains.com. cloud-dns-hostmaster.google.com. 1 21600 3600 1209600
300
ttl: 60
type: SOA
最后我用这个
提交交易gcloud dns record-sets transaction execute --project ruptureofthemundaneplane --zone zone-cubalibre
ERROR: (gcloud.dns.record-sets.transaction.execute)
The resource 'entity.change.additions[1]' named 'example.com. (A)' already exists (code: 409)
有什么建议吗?我想避免预先定义静态IP,因为它不可扩展... the equivalent Amazon aws commands work when I deploy using kube-up.sh over aws ...如果kubernetes在其所有云主机供应商中实现了通用解决方案,那将是一个不错的选择......人们是否使用其他自动化手段为达到这个 ? lang x中的一些SDK库?
答案 0 :(得分:2)
Cloud DNS操作适用于整个RR 集(record-set
或dns#resourceRecordSet
),而不是单个RR。即使在后一种情况下,你的例子也不会做你想要的,因为你最终会得到一个包含旧IP地址和新IP地址的RRset,这只会“主要起作用”。
在任何情况下, 记录集并且每个RTYPE只允许一个RRset,因此您的事务需要先删除现有的A
RRset ,然后添加新的。