Skip to content

Commit e306836

Browse files
authored
Stop pinning azure-core (#461)
For SLES 12, we needed to force a downgrade of python-azure-core according to https://www.suse.com/support/kb/doc/?id=000020716. But a fix has since been released and we are still using the old package. This removes the pinning. Related Ticket: TEAM-11103
1 parent d28ae63 commit e306836

1 file changed

Lines changed: 0 additions & 16 deletions

File tree

ansible/playbooks/tasks/azure-cluster-bootstrap.yaml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,6 @@
3030
ansible_distribution_version is version('15.5', '==') or
3131
ansible_distribution_version is version('12.5', '==')
3232

33-
# For SLES 12 a we need to force a downgrade of python-azure-core see https://www.suse.com/support/kb/doc/?id=000020716
34-
- name: Ensure Azure Python SDK and Azure Identity python modules are installed [12sp5]
35-
community.general.zypper:
36-
name: "{{ item }}"
37-
state: present
38-
loop:
39-
- 'python-azure-mgmt-compute'
40-
- 'python-azure-identity'
41-
- 'python-azure-core==1.9.0-2.3.4'
42-
when:
43-
- ansible_distribution_version is version('12.5', '==')
44-
register: result
45-
until: result is succeeded
46-
retries: 3
47-
delay: 60
48-
4933
- name: Ensure Azure Python SDK and Azure Identity python modules are installed [15 sp<4]
5034
community.general.zypper:
5135
name: "{{ item }}"

0 commit comments

Comments
 (0)