Forum Discussion
Dazzla_20011
Nimbostratus
Apr 01, 2011Problem with website Pool using port 443
Hi,
We've set up this new UAT website to only use https so the pool members are load balancing using port 443. The health monitor I've created is also using https. Everything looks fine as t...
Luke_Lehman
Employee
Jun 15, 2010I think I'm about 6-8 months away from 10.x, but it is good to know that it will work a little easier in 10.1 & 10.2.
- JoshBarrowFeb 22, 2022
Cirrus
It is running Python Version 3.8 and BIG IP Version 14.1.2.6.
Sanitized Playbook here
Spoiler- name: BIG-IP SETUPhosts: f5_labconnection: localgather_facts: falseignore_errors: truevars_files:- varsheet.ymltasks:# ------------------------ Setup Provider ------------------------- name: Setup providerset_fact:provider:server: "Server"user: "{{ansible_user}}"password:server_port: 443validate_certs: false# ------------------------ Create New Pool ------------------------- name: CREATE POOLf5networks.f5_modules.bigip_pool:provider: "{{ provider }}"name: "{{site_name}}"lb_method: "round-robin"monitors: "/Common/tcp"# ------------------------ Add Pool Members ------------------------- name: ADD POOL MEMBERSf5networks.f5_modules.bigip_pool_member:provider: "{{ provider }}"state: "present"address: "{{ item.host }}"name: "{{ item.name }}"port: "{{ site_port }}"pool: "{{site_name}}"with_items: "{{pool_members}}"# ------------------------ Create Virtual Server ------------------------- name: Add virtual serverf5networks.f5_modules.bigip_virtual_server:provider: "{{ provider }}"state: presentpartition: Commonname: "{{site_name}}"destination: "{{ virtual_ip }}"port: "443"pool: "{{site_name}}"snat: Automapprofiles:- name: httpcontext: all- name: "{{site_name}}"context: server-sideanything in the github issue mkratochvil mentioned helpful to you?
- JoshBarrowFeb 25, 2022
Cirrus
going to be trying this out today! i'll keep this updated!