Merge "Create SG rule for Octavia log offloading" into stable/ussuri

This commit is contained in:
Zuul 2021-12-15 21:55:45 +00:00 committed by Gerrit Code Review
commit e8ed13f5cf
1 changed files with 12 additions and 0 deletions

View File

@ -101,3 +101,15 @@
OS_USERNAME: "{{ auth_username }}" OS_USERNAME: "{{ auth_username }}"
OS_PASSWORD: "{{ auth_password }}" OS_PASSWORD: "{{ auth_password }}"
OS_PROJECT_NAME: "{{ auth_project_name }}" OS_PROJECT_NAME: "{{ auth_project_name }}"
- name: create security group rule for log offloading
openstack.cloud.security_group_rule:
security_group: "{{ lb_health_mgr_sec_grp_name }}"
protocol: udp
port_range_min: 514
port_range_max: 514
remote_ip_prefix: 0.0.0.0/0
environment:
OS_USERNAME: "{{ auth_username }}"
OS_PASSWORD: "{{ auth_password }}"
OS_PROJECT_NAME: "{{ auth_project_name }}"