Skip to content

Commit e269481

Browse files
evallespopenshift-merge-bot[bot]
authored andcommitted
[reproducer] Pin OpenSSL to 3.5.5 for ASN1: NOT_ENOUGH_DATA error
There is an already solution in place: 984a811 c6fae87 This change fixes cifmw-molecule-reproducer job. This jobs creates mid-test compute and controller VMs, coming from latest centos image. These has no the pin version constraint. Signed-off-by: Enrique Vallespi Gil <evallesp@redhat.com>
1 parent 75a097d commit e269481

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

roles/reproducer/tasks/configure_controller.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,22 @@
323323
retries: 100
324324
delay: 5
325325

326+
- name: Pin OpenSSL to 3.5.5
327+
become: true
328+
register: _cifmw_pin_openssl
329+
changed_when: >-
330+
_cifmw_pin_openssl.rc == 0 and
331+
"Nothing to do." not in (_cifmw_pin_openssl.stdout | default(""))
332+
failed_when: false
333+
ansible.builtin.command:
334+
argv:
335+
- dnf
336+
- downgrade
337+
- --allowerasing
338+
- -y
339+
- openssl-3.5.5
340+
- openssl-libs-3.5.5
341+
326342
# Deploy Sushy Emulator on the Ansible controller,
327343
- name: Deploy Sushy Emulator service container
328344
tags:

0 commit comments

Comments
 (0)