Skip to content

Commit 9c1a6b7

Browse files
Merge pull request #7833 from gryf/OCPBUGS-25132
OCPBUGS-25132: Fixes for the OpensStack UPI playbooks.
2 parents 666a25c + 39f4d26 commit 9c1a6b7

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

upi/openstack/security-groups.yaml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -323,31 +323,31 @@
323323
- name: 'Create master-sg IPv6 rule "OpenShift API"'
324324
openstack.cloud.security_group_rule:
325325
security_group: "{{ os_sg_master }}"
326-
ether_type: IPv6
326+
ethertype: IPv6
327327
protocol: tcp
328328
port_range_min: 6443
329329
port_range_max: 6443
330330

331331
- name: 'Create worker-sg IPv6 rule "Ingress HTTP"'
332332
openstack.cloud.security_group_rule:
333333
security_group: "{{ os_sg_worker }}"
334-
ether_type: IPv6
334+
ethertype: IPv6
335335
protocol: tcp
336336
port_range_min: 80
337337
port_range_max: 80
338338

339339
- name: 'Create worker-sg IPv6 rule "Ingress HTTPS"'
340340
openstack.cloud.security_group_rule:
341341
security_group: "{{ os_sg_worker }}"
342-
ether_type: IPv6
342+
ethertype: IPv6
343343
protocol: tcp
344344
port_range_min: 443
345345
port_range_max: 443
346346

347347
- name: 'Create master-sg rule "master ingress HTTP (TCP)"'
348348
openstack.cloud.security_group_rule:
349349
security_group: "{{ os_sg_master }}"
350-
ether_type: IPv6
350+
ethertype: IPv6
351351
protocol: tcp
352352
port_range_min: 80
353353
port_range_max: 80
@@ -356,7 +356,7 @@
356356
- name: 'Create master-sg rule "master ingress HTTPS (TCP)"'
357357
openstack.cloud.security_group_rule:
358358
security_group: "{{ os_sg_master }}"
359-
ether_type: IPv6
359+
ethertype: IPv6
360360
protocol: tcp
361361
port_range_min: 443
362362
port_range_max: 443
@@ -365,12 +365,11 @@
365365
- name: 'Create master-sg rule "router"'
366366
openstack.cloud.security_group_rule:
367367
security_group: "{{ os_sg_master }}"
368-
ether_type: IPv6
368+
ethertype: IPv6
369369
protocol: tcp
370370
remote_ip_prefix: "{{ os_subnet_range }}"
371371
port_range_min: 1936
372372
port_range_max: 1936
373373
when: os_master_schedulable is defined and os_master_schedulable
374374

375-
when:
376-
when: os_subnet6 is defined
375+
when: os_subnet6 is defined

0 commit comments

Comments
 (0)