Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions playbooks/multi-namespace/ns2_update_containers.yaml
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I understand that perhaps this should go in hooks/playbooks instead, but arguably so should all the playbooks in the playbooks/multi-namespace directory. We could clean that up in a follow-up, as the goal of this PR and its companion PRs in openstack-k8s-operators and elsewhere are just to get the multi-namespace job working again. Moving these playbooks right now would further delay that process.

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
- name: Update container images for namespace {{ cifmw_update_containers_namespace }}
hosts: "{{ cifmw_target_host | default('localhost') }}"
tasks:
- name: Load parameters files
ansible.builtin.include_vars:
dir: "{{ cifmw_basedir }}/artifacts/parameters"

- name: "Update containers in {{ cifmw_update_containers_namespace }}"
ansible.builtin.include_role:
name: update_containers
Loading