Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2022
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. {
  2. "loadbalancer": {
  3. "name": "lb",
  4. "vip_subnet_id": "<vip-id1>",
  5. "vip_port_id": "<id2>",
  6. "vip_address": "<port_id>",
  7. "flavor_id": "<flavor_id>",
  8. "listeners": [
  9. {
  10. "name": "rule-1",
  11. "protocol": "TCP",
  12. "protocol_port": 80,
  13. "timeout_client_data": 50000,
  14. "connection_limit": -1,
  15. "timeout_member_connect": 50000,
  16. "timeout_member_data": 50000,
  17. "timeout_tcp_inspect": 0,
  18. "insert_headers": {},
  19. "default_pool": {
  20. "protocol": "TCP",
  21. "lb_algorithm": "ROUND_ROBIN",
  22. "session_persistence": null,
  23. "name": "rule-1-pool-1",
  24. "healthmonitor": {
  25. "admin_state_up": true,
  26. "type": "TCP",
  27. "delay": 10,
  28. "timeout": 4,
  29. "max_retries": 5,
  30. "max_retries_down": 3
  31. },
  32. "members": [
  33. {
  34. "protocol_port": 8044,
  35. "subnet_id": "<another-sub-id>",
  36. "address": "<local-ip>",
  37. "weight": 1
  38. }
  39. ]
  40. },
  41. "l7policies": []
  42. }
  43. ]
  44. }
  45. }
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement