Browse Source

crio container runtime crio_registries path fix (#11030)

pull/11132/head
peterw 6 months ago
committed by GitHub
parent
commit
0b464b5239
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/container-engine/cri-o/tasks/main.yaml

2
roles/container-engine/cri-o/tasks/main.yaml

@ -169,7 +169,7 @@
- name: Cri-o | write registries configs
template:
src: registry.conf.j2
dest: "/etc/containers/registries.conf.d/10-{{ item.prefix | default(item.location) | regex_replace(':', '_') }}.conf"
dest: "/etc/containers/registries.conf.d/10-{{ item.prefix | default(item.location) | regex_replace(':|/', '_') }}.conf"
mode: 0644
loop: "{{ crio_registries }}"
notify: Restart crio

Loading…
Cancel
Save