I have to create a cluster with support of insecure docker registry. I want to use Kops
for this. Is there any way to create cluster with insecure registry using Kops
?
You can set insecure registry at cluster config edit time, after kops create cluster ...
command (navigate to clusterSpec part of file):
$ kops edit cluster $NAME
...
docker:
insecureRegistry: registry.example.com
logDriver: json-file
...