Docker
如何在 docker 容器的 resolv.conf 中設置選項超時?
如何(如果有)可以添加
options timeout
到/etc/resolv.conf
在 Kubernetes 集群中執行的 docker 容器中?該文件已生成,因此無法在
Dockerfile
. 另一方面,它由 root 擁有,因此也不可能通過啟動容器在 shell 腳本中執行此操作。我猜它屬於集群配置……
你可以使用這個:
spec: containers: - name: test image: nginx dnsConfig: options: - name: timeout value: "2"