You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we run the following tasks in the api, content, and worker roles, all of which use the same image. We should consolidate this and move it to the common role.
- name: Set default pulp-api imageset_fact:
_default_image: "{{ _image }}:{{ _image_version }}"
- name: Set user provided pulp-api imageset_fact:
_custom_image: "{{ image }}:{{ image_version }}"when:
- image is defined and image != ''
- image_version is defined and image_version != ''
- name: Set pulp-api image URLset_fact:
_image: "{{ _custom_image | default(lookup('env', 'RELATED_IMAGE_PULP')) | default(_default_image, true) }}"
The text was updated successfully, but these errors were encountered:
Currently, we run the following tasks in the api, content, and worker roles, all of which use the same image. We should consolidate this and move it to the
common
role.The text was updated successfully, but these errors were encountered: