36 lines
1.4 KiB
YAML
36 lines
1.4 KiB
YAML
---
|
|
|
|
############################################
|
|
# Matt-Cloud Cosmostat API Settings
|
|
############################################
|
|
|
|
# Built {{ inventory_generation_timestamp }} by {{ jenkins_user }}
|
|
inventory_generation_timestamp: "{{ inventory_generation_timestamp }}"
|
|
jenkins_user: "{{ jenkins_user }}"
|
|
ansible_hostname: "{{ ansible_hostname }}"
|
|
|
|
##################################################################
|
|
### The cosmostat service is the foundation of the cosmostat platform
|
|
### Each Matt-Cloud system will have the cosmostat service installed
|
|
### This stores a short history of some system data in a python service
|
|
### This system status service will be queriable locally only by default
|
|
### It will also report back to the main cosmostat platform when queried and available
|
|
##################################################################
|
|
|
|
# docker subnet, will use to bind the IP in default secure mode
|
|
docker_subnet: "{{ docker_subnet }}"
|
|
docker_gateway: "{{ docker_gateway }}"
|
|
|
|
# python system variables, no quotes for bool or int
|
|
secure_api: {{ secure_api }}
|
|
noisy_test: {{ noisy_test }}
|
|
debug_output: {{ debug_output }}
|
|
push_redis: {{ push_redis }}
|
|
run_background : {{ run_background }}
|
|
log_output: {{ log_output }}
|
|
update_frequency: {{ update_frequency }}
|
|
custom_api_port: {{ custom_api_port }}
|
|
cosmostat_server: {{ cosmostat_server }}
|
|
cosmostat_server_api: "{{ cosmostat_server_api }}"
|
|
cosmostat_server_reporter: {{ cosmostat_server_reporter }}
|
|
... |