9e1968b1be
ci/woodpecker/pr/ruby-validate Pipeline was successful
ci/woodpecker/pr/puppet-lint Pipeline was successful
ci/woodpecker/pr/yamllint Pipeline was successful
ci/woodpecker/pr/bolt-validate Pipeline was successful
ci/woodpecker/pr/erb-validate Pipeline was successful
ci/woodpecker/pr/epp-validate Pipeline was successful
ci/woodpecker/pr/puppet-validate Pipeline was successful
ci/woodpecker/pr/ruby-check Pipeline was successful
- Replace static registries.yaml with EPP template driven by rke2::registries hash - Add disable-default-registry-endpoint: true to all mirrors - Add docker.litellm.ai and public.ecr.aws registries - Registry configuration now managed via hiera data in roles/infra/k8s.yaml
21 lines
525 B
Plaintext
21 lines
525 B
Plaintext
<%- | Hash $registries | -%>
|
|
---
|
|
# DO NOT MODIFY - MANAGED BY PUPPET
|
|
mirrors:
|
|
<%- $registries.each |$registry, $config| { -%>
|
|
<%= $registry %>:
|
|
endpoint:
|
|
<%- $config['endpoint'].each |$ep| { -%>
|
|
- "<%= $ep %>"
|
|
<%- } -%>
|
|
<%- if $config['rewrite'] { -%>
|
|
rewrite:
|
|
<%- $config['rewrite'].each |$pattern, $replacement| { -%>
|
|
"<%= $pattern %>": "<%= $replacement %>"
|
|
<%- } -%>
|
|
<%- } -%>
|
|
<%- if $config['disable-default-registry-endpoint'] { -%>
|
|
disable-default-registry-endpoint: true
|
|
<%- } -%>
|
|
<%- } -%>
|