Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects

Draft: Netbox password rotation service

Open Arkadiusz SZCZECINSKI requested to merge v3_password-rotation into develop
Files
4
+ 3
3
@@ -59,8 +59,8 @@
http_proxy: "{{ lookup('ansible.builtin.env', 'HTTP_PROXY') }}"
https_proxy: "{{ lookup('ansible.builtin.env', 'HTTPS_PROXY') }}"
nocache: true
name: "{{ lookup('ansible.builtin.env', 'CI_PROJECT_NAME') }}/docker/psw_rotation:{{ lookup('ansible.builtin.env', 'CI_COMMIT_SHORT_SHA') }}"
repository: "{{ lookup('ansible.builtin.env', 'CI_REGISTRY_IMAGE') }}/docker/psw_rotation:{{ lookup('ansible.builtin.env', 'CI_COMMIT_SHORT_SHA') }}"
name: "{{ lookup('ansible.builtin.env', 'CI_PROJECT_NAME') }}/psw_rotation:{{ lookup('ansible.builtin.env', 'CI_COMMIT_SHORT_SHA') }}"
repository: "{{ lookup('ansible.builtin.env', 'CI_REGISTRY_IMAGE') }}/psw_rotation:{{ lookup('ansible.builtin.env', 'CI_COMMIT_SHORT_SHA') }}"
push: true
force_source: true
force_tag: true
@@ -132,7 +132,7 @@
- name: Remove local image PSW rotation
community.docker.docker_image:
state: absent
name: "{{ lookup('ansible.builtin.env', 'CI_PROJECT_NAME') }}/docker/psw_rotation:{{ lookup('ansible.builtin.env', 'CI_COMMIT_SHORT_SHA') }}"
name: "{{ lookup('ansible.builtin.env', 'CI_PROJECT_NAME') }}/psw_rotation:{{ lookup('ansible.builtin.env', 'CI_COMMIT_SHORT_SHA') }}"
force_absent: true
- name: Remove source image Netbox
Loading