common/variables.yml

55 lines
1.6 KiB
YAML
Raw Normal View History

2023-08-18 23:43:31 +02:00
---
2023-08-20 01:36:37 +02:00
locale:
# Timezone to set inside containers
tz: Europe/Paris
2023-08-18 23:43:31 +02:00
# Resources to allocate to envoy sidecars
envoy:
cpu: 50
memory: 64
vault:
# A prefix for all vault mount points. Usefull if you have different environnements
# This is an alternative to using vault namespaces as Nomad Community doesn't support it
prefix: ""
2023-08-20 01:36:37 +02:00
nomad:
# List of datacenters jobs will be deployed to
datacenters:
- dc1
consul:
# Domain name used by consul (to lookup services by DNS name)
domain: consul
2023-08-20 01:36:37 +02:00
env:
# A suffix to add to service names. Alternative to Consul namespaces as community Consul
# doesn't support them
# You can set it for example like this
# suffix: "-qa"
# And a postgres service for example will be registered on consul as postgres-qa
# All the policies (vault, consul and nomad) will also be suffixed so they won't clash between
# your env
2023-08-20 01:36:37 +02:00
suffix: ""
# Set to the traefik instance you want to use for this env
traefik: traefik
2023-08-20 01:36:37 +02:00
proxy:
# A list of IP/hostname for which requests won't go through a (potentially) defined proxy
no_proxy:
- '*.consul'
- localhost
- 127.0.0.1
# A service name of an outbound web proxy reachable throught the service mesh
# service_name: squid
2023-08-19 18:06:56 +02:00
# The name of a service providing SMTP capabilitites through the service mesh
# Can be used to easily switch from a mailpit to a real smtp relay for example
2023-08-20 01:36:37 +02:00
mail:
# The name of a service providing SMTP capabilitites through the service mesh
# Can be used to easily switch from a mailpit to a real smtp relay for example
smtp_service_name: smtp
2023-08-19 18:06:56 +02:00