-
Environmental Info: Node(s) CPU architecture, OS, and Version: N/A Cluster Configuration: 3 master + 3 workers Describe the bug: Apologies for opening this ticket but I could not find a way to add GCP Artifact Registry to the RKE2 containerd runtime via the Steps To Reproduce:
Expected behavior: Be able to pull images via Actual behavior: Pull doesn't work - failing with: It's likely an error on my end on how to properly configure Thank you in advance for the support. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 10 replies
-
It looks like you're using Registries.yaml is not a cluster resource. The configuration is local to each node, so you must place this configuration on every node that you want to be able to authenticate to your registry. This is also covered at the top of the above-linked page. |
Beta Was this translation helpful? Give feedback.
@brandond apologies for keeping this thread open - just realized that I did not circled back once the solution was found.
Indeed it was as easy as adding these lines to the
registries.yaml
config:of course it also works with:
but in this latter case, you must pay attention to single apexes and special characters of the base-64 formatted certs that may break the
password
field.Also, there are sources/forums online that make use of
*.pkg.dev
as source. In…