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
Description
Tasks that directly download resources from external sources during runtime (e.g., get_url) causes high memory usage. This issue is particularly noticeable in environments with large-scale deployments or limited system resources. There are multiple instances in different files that we are reporting as part of this bug that we would like to get resolved.
Description
Tasks that directly download resources from external sources during runtime (e.g., get_url) causes high memory usage. This issue is particularly noticeable in environments with large-scale deployments or limited system resources. There are multiple instances in different files that we are reporting as part of this bug that we would like to get resolved.
ansible/configs/hacluster-breakfix1-pntae/node-install.yml
- name: copying binary
get_url:
url: "{{courseurl}}/{{coursecode}}/breakfix1/mk"
dest: /usr/local/bin/
mode: '0755'
ansible/configs/hacluster-breakfix1-pntae/iscsiserver.yml
- name: iscsi target server configuration. Get the script
get_url:
url: "{{courseurl}}/{{coursecode}}/breakfix1/target-iscsi-server.sh"
dest: /usr/local/bin/
mode: '0755'
ansible/configs/ansible-automation-platform/software.yml
- name: Download Manifest for Controller
get_url:
url: "{{ controller_manifest.url }}"
dest: /tmp
ansible/configs/ansible-multi-node/setup-hands-on-aap2.yml
- name: Install user resources
get_url:
url: "{{ __resource.url }}"
ansible/configs/osp-stf/post_software.yml
- name: Get cirros images
get_url:
url: "http://download.cirros-cloud.net/0.5.1/cirros-0.5.1-x86_64-disk.img"
Expected behavior
The playbook should avoid fetching resources directly from external URLs to prevent high memory usage. Instead:
Versions (please complete the following information):
The text was updated successfully, but these errors were encountered: