35 lines
1.5 KiB
YAML
35 lines
1.5 KiB
YAML
---
|
|
# Define the feedstack serer host name, defaulting to the inventory host.
|
|
feedstack_server_hostname: "{{ hostname }}.{{ domain }}"
|
|
|
|
# Define a default location for the feedstack certificates on the host filesystem.
|
|
feedstack_cert_directory: "/var/local/certs/{{ feedstack_server_hostname }}"
|
|
|
|
# Define default names for the feedstack server SSL certificate and key files.
|
|
feedstack_server_cert_filename: "fullchain.pem"
|
|
feedstack_server_key_filename: "privkey.pem"
|
|
|
|
# Define the default weatherfeeder container image and tag.
|
|
feedstack_weatherfeeder_container_image: "harbor.maximumdirect.net/library/weatherfeeder"
|
|
feedstack_weatherfeeder_container_tag: "latest"
|
|
|
|
# Define the default weatherprocessor container image and tag.
|
|
feedstack_weatherprocessor_container_image: "harbor.maximumdirect.net/library/weatherprocessor"
|
|
feedstack_weatherprocessor_container_tag: "latest"
|
|
|
|
# Define the default weatherapi container image and tag.
|
|
feedstack_weatherapi_container_image: "harbor.maximumdirect.net/library/weatherapi"
|
|
feedstack_weatherapi_container_tag: "latest"
|
|
|
|
# Define the default NATS container image and tag.
|
|
feedstack_nats_container_image: "nats"
|
|
feedstack_nats_container_tag: "linux"
|
|
|
|
# Define the default weatherdb container image and tag.
|
|
feedstack_weatherdb_container_image: "postgres"
|
|
feedstack_weatherdb_container_tag: "16"
|
|
|
|
# Define the default weatherdb database user and password.
|
|
feedstack_weatherdb_user: "weatherdb"
|
|
feedstack_weatherdb_password: "weatherdb"
|
|
feedstack_weatherdb_database: "weatherdb" |