Merge "Optimize kernel neighbour table for large scale environments"
[apex-tripleo-heat-templates.git] / puppet / services / octavia-base.yaml
1 heat_template_version: ocata
2
3 description: >
4   OpenStack Octavia base service. Shared for all Octavia services
5
6 parameters:
7   ServiceNetMap:
8     default: {}
9     description: Mapping of service_name -> network name. Typically set
10                  via parameter_defaults in the resource registry.  This
11                  mapping overrides those in ServiceNetMapDefaults.
12     type: json
13   DefaultPasswords:
14     default: {}
15     type: json
16   RoleName:
17     default: ''
18     description: Role name on which the service is applied
19     type: string
20   RoleParameters:
21     default: {}
22     description: Parameters specific to the role
23     type: json
24   EndpointMap:
25     default: {}
26     description: Mapping of service endpoint -> protocol. Typically set
27                  via parameter_defaults in the resource registry.
28     type: json
29   Debug:
30     type: string
31     default: ''
32     description: Set to True to enable debugging on all services.
33   EnableConfigPurge:
34     type: boolean
35     default: false
36     description: >
37         Remove configuration that is not generated by TripleO. Used to avoid
38         configuration remnants after upgrades.
39   RabbitPassword:
40     description: The password for RabbitMQ
41     type: string
42     hidden: true
43   RabbitUserName:
44     default: guest
45     description: The username for RabbitMQ
46     type: string
47   RabbitClientUseSSL:
48     default: false
49     description: >
50         Rabbit client subscriber parameter to specify
51         an SSL connection to the RabbitMQ host.
52     type: string
53   RabbitClientPort:
54     default: 5672
55     description: Set rabbit subscriber port, change this if using SSL
56     type: number
57
58 outputs:
59   role_data:
60     description: Base role data for Octavia services
61     value:
62        service_name: octavia_base
63        config_settings:
64          octavia::debug: {get_param: Debug}
65          octavia::purge_config: {get_param: EnableConfigPurge}
66          octavia::rabbit_use_ssl: {get_param: RabbitClientUseSSL}
67          octavia::rabbit_userid: {get_param: RabbitUserName}
68          octavia::rabbit_password: {get_param: RabbitPassword}
69          octavia::rabbit_port: {get_param: RabbitClientPort}
70