fix: add task to handle registry logouts
ci/woodpecker/push/lint Pipeline was successful Details
ci/woodpecker/push/test Pipeline was successful Details
ci/woodpecker/push/docs Pipeline failed Details
ci/woodpecker/push/notify Pipeline was successful Details

This commit is contained in:
Robert Kaussow 2024-02-11 14:02:14 +01:00
parent 13672e86ab
commit fa97e3274f
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
2 changed files with 11 additions and 4 deletions

View File

@ -16,8 +16,7 @@ podman_nsremap_range_length: 65536
# - registry: myregistry.example.com (optional)
# username: docker
# password: secure
# reauthorize: False
# state: present
# active: True
# @end
podman_registries: []

View File

@ -49,10 +49,18 @@
- name: Handle registry logins
containers.podman.podman_login:
registry: "{{ item.registry }}"
registry: "{{ item.registry }}"
username: "{{ item.username }}"
password: "{{ item.password }}"
state: '{{ item.state | default("present") }}'
when: item.active | default(True) | bool
loop: "{{ podman_registries }}"
loop_control:
label: "{{ item.registry }}"
- name: Handle registry logouts
containers.podman.podman_logout:
registry: "{{ item.registry }}"
when: not item.active | default(True) | bool
loop: "{{ podman_registries }}"
loop_control:
label: "{{ item.registry }}"