Add "managed by Ansible" notice to all template files

Included comments at the top of all template files indicating that they are managed by Ansible and should not be edited manually. This ensures clarity and avoids unintended manual modifications.
This commit is contained in:
2025-09-11 11:01:50 +02:00
parent d1cf7d363a
commit 4cef67a91d
10 changed files with 12 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
# This file is managed by ansible. Do not edit it by hand
services:
frontend:
image: {{ registry_url }}/{{ registry_project }}/{{ chill_image_nginx_name }}:{{ item.chill_image_tag }}

View File

@@ -1,3 +1,4 @@
# this file is managed by ansible. Do not edit it by hand
chill_doc_store:
use_driver: local_storage
local_storage:

View File

@@ -1,3 +1,5 @@
# this file is managed by ansible. Do not edit it by hand
framework:
trusted_proxies: '127.0.0.1,REMOTE_ADDR{% for ip in traefik_trusted_ips|default([]) %},{{ ip }}{% endfor %}'
trusted_headers: ['x-forwarded-for', 'x-forwarded-host', 'x-forwarded-proto', 'x-forwarded-port']

View File

@@ -1,3 +1,4 @@
# this file is managed by ansible. Do not edit it by hand
lexik_jwt_authentication:
# in production, the secret must be located in an environment variable
# for converting the file to a raw variable, use this command:

View File

@@ -1,3 +1,4 @@
# this file is managed by ansible. Do not edit it by hand
framework:
messenger:
transports:

View File

@@ -1,3 +1,4 @@
# this file is managed by ansible. Do not edit it by hand
parameters:
log_prefix: {{ item.chill_environment }}
monolog:

View File

@@ -1,3 +1,4 @@
# This file is managed by ansible. Do not edit it by hand
APP_ENV=prod
APP_DEBUG=false
TRUSTED_PROXIES=10.0.0.0/8,192.168.0.0/16,172.16.0.0/16

View File

@@ -1,3 +1,4 @@
# this file is managed by ansible. Do not edit it by hand
POSTGRES_DB={{ item.chill_config.database_name }}
POSTGRES_USER={{ item.chill_config.database_user }}
POSTGRES_PASSWORD={{ item.chill_config.database_password }}

View File

@@ -1,2 +1,3 @@
# this file is managed by ansible. Do not edit it by hand.
RABBITMQ_DEFAULT_USER={{ item.chill_config.rabbitmq_user }}
RABBITMQ_DEFAULT_PASS={{ item.chill_config.rabbitmq_password }}

View File

@@ -1,3 +1,4 @@
# this file is managed by ansible. Do not edit it by hand.
services:
reverse-proxy:
# The official v3 Traefik docker image