Expose haproxy timeout options

For some reason heat never got the haproxy config options exposed
in its config.yaml. This fixes that.

Change-Id: I657a88eb0971d37bf4685fd986b99fd436f8c69b
Partial-Bug: #1735184
This commit is contained in:
Liam Young 2017-12-08 12:59:14 +00:00
parent 902d83ed3e
commit 86b670d3ee
1 changed files with 24 additions and 0 deletions

View File

@ -254,3 +254,27 @@ options:
Openstack mostly defaults to using public endpoints for
internal communication between services. If set to True this option
will configure services to use internal endpoints where possible.
haproxy-server-timeout:
type: int
default:
description: |
Server timeout configuration in ms for haproxy, used in HA
configurations. If not provided, default value of 30000ms is used.
haproxy-client-timeout:
type: int
default:
description: |
Client timeout configuration in ms for haproxy, used in HA
configurations. If not provided, default value of 30000ms is used.
haproxy-queue-timeout:
type: int
default:
description: |
Queue timeout configuration in ms for haproxy, used in HA
configurations. If not provided, default value of 5000ms is used.
haproxy-connect-timeout:
type: int
default:
description: |
Connect timeout configuration in ms for haproxy, used in HA
configurations. If not provided, default value of 5000ms is used.