Created
January 10, 2020 13:02
-
-
Save gbevan/282e2f9962ccd201496cb177f7e90e4e to your computer and use it in GitHub Desktop.
microk8s local insecure registry
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
[plugins.cri.registry] | |
[plugins.cri.registry.mirrors] | |
[plugins.cri.registry.mirrors."docker.io"] | |
endpoint = ["https://registry-1.docker.io"] | |
[plugins.cri.registry.mirrors."local.insecure-registry.io"] | |
endpoint = ["http://localhost:32000"] | |
[plugins.cri.registry.mirrors."k8sdev:32000"] | |
endpoint = ["http://k8sdev:32000"] | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
[plugins.cri.registry] | |
[plugins.cri.registry.mirrors] | |
[plugins.cri.registry.mirrors."docker.io"] | |
endpoint = ["https://registry-1.docker.io"] | |
[plugins.cri.registry.mirrors."local.insecure-registry.io"] | |
endpoint = ["http://localhost:32000"] | |
[plugins.cri.registry.mirrors."k8sdev:32000"] | |
endpoint = ["http://k8sdev:32000"] | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"insecure-registries" : ["localhost:32000", "k8sdev:32000"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment