Skip to content
Draft
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions docs/dictionary/en-custom.txt
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ edecb
edploy
edpm
edpmnodeexporter
edpmpodmanexporter
ee
encodings
eno
Expand Down Expand Up @@ -390,6 +391,7 @@ multinode
multipath
multus
myorg
mysqld
mytest
nad
namespace
Expand Down Expand Up @@ -491,6 +493,7 @@ pki
png
podified
podman
podmanexporter
polarion
polkit
pragadeeswaran
Expand Down
5 changes: 4 additions & 1 deletion roles/edpm_prepare/tasks/kustomize_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@
(cifmw_update_containers_openstack is defined and
cifmw_update_containers_openstack | bool) or
(cifmw_update_containers_watcher is defined and
cifmw_update_containers_watcher | bool))
cifmw_update_containers_watcher | bool) or
(cifmw_update_containers_ceilometersgcoreImage is defined) or
(cifmw_update_containers_ceilometermysqldexporterImage is defined) or
(cifmw_update_containers_edpmpodmanexporterImage is defined))
vars:
cifmw_update_containers_metadata: "{{ _ctlplane_name }}"
ansible.builtin.include_role:
Expand Down
2 changes: 2 additions & 0 deletions roles/update_containers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ If apply, please explain the privilege escalation done in this role.
* `cifmw_update_containers_manilashares`: The names of the manila shares prefix. Default to `[]`.
* `cifmw_update_containers_agentimage`: Full Agent Image url for updating Agent Image.
* `cifmw_update_containers_ceilometersgcoreImage`: Full Ceilometersgcore Image url for updating Ceilometersgcore Image.
* `cifmw_update_containers_ceilometermysqldexporterImage`: Full Ceilometer mysqld_exporter Image url for updating Ceilometer mysqld_exporter Image.
* `cifmw_update_containers_edpmnodeexporterimage`: Fill EdpmNodeExporter Image url for update Nodeexporter Image.
* `cifmw_update_containers_edpmpodmanexporterImage`: Fill EdpmPodmanExporter Image url for update PodmanExporter Image.
* `cifmw_update_containers_openstack`: Whether to generate CR for updating openstack containers. Default to `false`.
* `cifmw_update_containers_ansibleee_image_url`: Full Ansibleee Image url for updating Ansibleee Image.
* `cifmw_update_containers_edpm_image_url`: Full EDPM Image url for updating EDPM OS image.
Expand Down
6 changes: 6 additions & 0 deletions roles/update_containers/templates/update_containers.j2
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,12 @@ spec:
{% if cifmw_update_containers_edpmnodeexporterimage is defined %}
edpmNodeExporterImage: {{ cifmw_update_containers_edpmnodeexporterimage }}
{% endif %}
{% if cifmw_update_containers_ceilometermysqldexporterImage is defined %}
ceilometerMysqldExporterImage: {{ cifmw_update_containers_ceilometermysqldexporterImage }}
{% endif %}
{% if cifmw_update_containers_edpmpodmanexporterImage is defined %}
edpmPodmanExporterImage: {{ cifmw_update_containers_edpmpodmanexporterImage }}
{% endif %}
{% if cifmw_update_containers_agentimage is defined %}
agentImage: {{ cifmw_update_containers_registry }}/{{ cifmw_update_containers_org }}/{{ cifmw_update_containers_name_prefix }}-baremetal-operator-agent:{{ cifmw_update_containers_tag }}
{% endif %}
Expand Down
Loading