tripleo-operator-ansible/roles/tripleo_container_image_list
Harald Jensås 570c886faa Bump molecule[test] to 3.5.x
CI is failing with conflictiong dependencies:

The conflict is caused by:
    molecule[test] 3.2.4 depends on pluggy<1.0 and >=0.7.1
    molecule[test] 3.2.3 depends on pluggy<1.0 and >=0.7.1
    molecule[test] 3.2.2 depends on pluggy<1.0 and >=0.7.1
    molecule[test] 3.2.1 depends on pluggy<1.0 and >=0.7.1
    molecule[test] 3.2.0 depends on pluggy<1.0 and >=0.7.1
    molecule[test] 3.2.0a2 depends on pluggy<1.0 and >=0.7.1
    molecule[test] 3.2.0a1 depends on pluggy<1.0 and >=0.7.1
    The user requested (constraint) pluggy===1.0.0

Let's try to use molecule[test] 3.5.x

Also set 'role_name' and 'namespace' in meta/main.yaml for
all roles. Namespace cannot container uppercase characters,
so computing fully qualified role name using author 'OpenStack'
does not work.

Also - fix tests in tripleo_overcloud_node_discover

Closes-Bug: #1943269
Change-Id: I1ab9764dd4d24c17c5ee2cb1f26fbc3c4b27d3d7
2021-09-23 15:33:06 +02:00
..
defaults Switch cli data to environment vars 2020-01-29 14:55:09 -07:00
meta Bump molecule[test] to 3.5.x 2021-09-23 15:33:06 +02:00
molecule/default Add ability to write scripts 2020-04-15 16:25:27 -06:00
tasks Ensure we export result only if we have an stdout 2020-05-15 15:43:20 +02:00
tests Fixed flake8 excludes and new-lines 2020-01-27 19:10:31 +00:00
README.md Enabled markdownlint 2020-01-28 13:27:26 +00:00

README.md

tripleo_container_image_list

A role to perform the container image list against a registry.

Requirements

None.

Role Variables

  • tripleo_container_image_list_debug: (Boolean) Flag to print out the list command. Default: False
  • tripleo_container_image_list_format: (String) The format that the output will be in. By default we specify 'json' so that the output will be parsed in ansible. Default: json
  • tripleo_container_image_list_password: (String) Password for the registry
  • tripleo_container_image_list_registry: (String) Registry to run the list against
  • tripleo_container_image_list_username: (String) Username for the registry

Output Variables

  • tripleo_container_image_list_output: (List|String) If tripleo_container_image_list_format is JSON, the results will automatically be parsed and a list is returned. If another format is used then this will be the response in String format.
  • tripleo_container_image_list_result: Ansible shell execution results

Dependencies

None.

Example Playbook

Example container list execution playbook

- hosts: undercloud
  gather_facts: true
  tasks:
    - name: List containers
      import_role:
        name: tripleo_container_image_list
    - name: Print containers
      debug:
        msg: "{{ item['Image Name'] }}"
      loop: "{{ tripleo_container_image_list_output }}"

License

Apache-2.0