Merge "Re-Add bigswitch agent support"
[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   EndpointMap:
17     default: {}
18     description: Mapping of service endpoint -> protocol. Typically set
19                  via parameter_defaults in the resource registry.
20     type: json
21   Debug:
22     type: string
23     default: ''
24     description: Set to True to enable debugging on all services.
25   EnableConfigPurge:
26     type: boolean
27     default: false
28     description: >
29         Remove configuration that is not generated by TripleO. Used to avoid
30         configuration remnants after upgrades.
31   RabbitPassword:
32     description: The password for RabbitMQ
33     type: string
34     hidden: true
35   RabbitUserName:
36     default: guest
37     description: The username for RabbitMQ
38     type: string
39   RabbitClientUseSSL:
40     default: false
41     description: >
42         Rabbit client subscriber parameter to specify
43         an SSL connection to the RabbitMQ host.
44     type: string
45   RabbitClientPort:
46     default: 5672
47     description: Set rabbit subscriber port, change this if using SSL
48     type: number
49
50 outputs:
51   role_data:
52     description: Base role data for Octavia services
53     value:
54        service_name: octavia_base
55        config_settings:
56          octavia::debug: {get_param: Debug}
57          octavia::purge_config: {get_param: EnableConfigPurge}
58          octavia::rabbit_use_ssl: {get_param: RabbitClientUseSSL}
59          octavia::rabbit_userid: {get_param: RabbitUserName}
60          octavia::rabbit_password: {get_param: RabbitPassword}
61          octavia::rabbit_port: {get_param: RabbitClientPort}
62