Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须创建一个支持不安全 docker 注册表的集群。我想用Kops这个。有没有办法使用不安全的注册表创建集群Kops?
Kops
您可以在集群配置编辑时设置不安全的注册表,在kops create cluster ...命令之后(导航到文件的 clusterSpec 部分):
kops create cluster ...
$ kops edit cluster $NAME ... docker: insecureRegistry: registry.example.com logDriver: json-file ...
原始链接