|
| 1 | +argument_specs: |
| 2 | + main: |
| 3 | + options: |
| 4 | + # line 2 of defaults/main.yml |
| 5 | + amq_streams_cruise_control_home: |
| 6 | + default: "/opt/cruise-control/" |
| 7 | + description: "Path to folder where Cruise Control has been installed" |
| 8 | + type: "str" |
| 9 | + |
| 10 | + # line 3 of defaults/main.yml |
| 11 | + amq_streams_cruise_control_service_name: |
| 12 | + default: "amq_streams_cruise_control" |
| 13 | + description: "Name of the systemd service running Cruise Control" |
| 14 | + type: "str" |
| 15 | + |
| 16 | + # line 4 of defaults/main.yml |
| 17 | + amq_streams_cruise_control_server_start: |
| 18 | + default: "{{ amq_streams_cruise_control_home }}/kafka-cruise-control-start.sh" |
| 19 | + description: "Path to start script for systemd service managing Cruise Control" |
| 20 | + type: "str" |
| 21 | + |
| 22 | + # line 5 of defaults/main.yml |
| 23 | + amq_streams_cruise_control_server_stop: |
| 24 | + default: "{{ amq_streams_cruise_control_home }}/kafka-cruise-control-stop.sh" |
| 25 | + description: "Path to stop script for systemd service managing Cruise Control" |
| 26 | + type: "str" |
| 27 | + |
| 28 | + # line 6 of defaults/main.yml |
| 29 | + amq_streams_cruise_control_server_config: |
| 30 | + default: "/etc/amq_streams_cruise_control.properties" |
| 31 | + description: "Path to config file for Cruise Control service" |
| 32 | + type: "str" |
| 33 | + |
| 34 | + # line 7 of defaults/main.yml |
| 35 | + amq_streams_cruise_control_config_template: |
| 36 | + default: "templates/service.conf.j2" |
| 37 | + description: "Path to template defining the systemd service for Cruise Control" |
| 38 | + type: "str" |
| 39 | + |
| 40 | + # line 8 of defaults/main.yml |
| 41 | + amq_streams_cruise_control_config_properties_template: |
| 42 | + default: "templates/cruisecontrol.properties.j2" |
| 43 | + description: "Path to template defining the config file for Cruise Control" |
| 44 | + type: "str" |
| 45 | + |
| 46 | + # line 9 of defaults/main.yml |
| 47 | + amq_streams_cruise_control_user: |
| 48 | + default: "root" |
| 49 | + description: "User account running the Cruise Control service" |
| 50 | + type: "str" |
| 51 | + |
| 52 | + # line 10 of defaults/main.yml |
| 53 | + amq_streams_cruise_control_group: |
| 54 | + default: "root" |
| 55 | + description: "Groupname of the account running the Cruise Control service" |
| 56 | + type: "str" |
| 57 | + |
| 58 | + # line 11 of defaults/main.yml |
| 59 | + amq_streams_cruise_control_zk_host: |
| 60 | + default: "{{ groups['zookeepers'][0] }}" |
| 61 | + description: "Hostname of the Zookeeper instance used by Cruise Control to communicate with the ensemble" |
| 62 | + type: "str" |
| 63 | + |
| 64 | + # line 12 of defaults/main.yml |
| 65 | + amq_streams_cruise_control_broker_host: |
| 66 | + default: "{{ groups['brokers'][0] }}" |
| 67 | + description: "Hostname of the Zookeeper instance used by Cruise Control to communicate with the ensemble" |
| 68 | + type: "str" |
| 69 | + |
| 70 | + # line 14 of defaults/main.yml |
| 71 | + amq_streams_cruise_control_host: |
| 72 | + default: "localhost" |
| 73 | + description: "Name of the host system running Cruise Control" |
| 74 | + type: "str" |
| 75 | + |
| 76 | + # line 15 of defaults/main.yml |
| 77 | + amq_streams_cruise_control_port: |
| 78 | + default: 9090 |
| 79 | + description: "Port used communicate with Cruise Control" |
| 80 | + type: "int" |
| 81 | + |
| 82 | + # line 16 of defaults/main.yml |
| 83 | + amq_streams_cruise_control_api_path: |
| 84 | + default: "kafkacruisecontrol" |
| 85 | + description: "Context of the HTTP API call to Cruise Control (don't modify unless you know what you are doing)" |
| 86 | + type: "str" |
| 87 | + amq_streams_cruise_control_operation_exec: |
| 88 | + default: True |
| 89 | + description: "Indicate if the request must be executed or just diplayed (for debugging purpose)" |
| 90 | + type: "bool" |
0 commit comments