Files
my-cd-webhook/targets.json
T
fisher b48e112ed7 Move receiver to port 21600, per the Port registry allocation rules
The registry reserves 20000-20099 for Gitea and requires new blocks to come
from the 21500-21999 free pool, claimed only once a service is actually
listening. Also corrects the clone URL to fisher/my-cd-webhook.
2026-08-23 07:54:44 +00:00

91 lines
2.5 KiB
JSON

{
"version": 1,
"_comment": [
"Single source of truth for the fleet's continuous-deployment targets.",
"A target is uniquely identified by (repo, branch). The 'host' field decides",
"which machine acts on it -- every host runs the same daemon from the same",
"checkout of this repo and simply ignores targets that are not its own.",
"",
"Adding an environment is an edit here plus a re-run of install/install.sh on",
"the owning host. It is never a change to the project repository."
],
"defaults": {
"registry": "gitea.fisher.hu",
"ntfy_base_url": "https://ntfy.fisher.hu",
"image_wait_seconds": 900,
"image_poll_interval": 15,
"health_retries": 30,
"health_interval": 5,
"lock_wait_seconds": 600,
"compose_timeout_seconds": 300
},
"hosts": {
"s5.fisher.hu": {
"bind": "10.255.255.1",
"port": 21600
},
"s4.fisher.hu": {
"bind": "10.255.255.12",
"port": 21600
}
},
"targets": [
{
"name": "domaindingo-test",
"enabled": true,
"repo": "webdev/domaindingo",
"branch": "test",
"env": "test",
"host": "s5.fisher.hu",
"stack_dir": "/home/fisher/S/uas-ng/docker/domaindingo/s5.fisher.hu",
"compose_file": "docker-compose.yml",
"compose_project": "domaindingo-test",
"container": "domaindingo-test",
"image_repo": "gitea.fisher.hu/webdev/domaindingo",
"image_tag_template": "{branch}-sha-{short7}",
"image_env_var": "DOMAINDINGO_TEST_IMAGE",
"pull_policy_env_var": "DOMAINDINGO_TEST_PULL_POLICY",
"health_url": "http://127.0.0.1:9101/health",
"health_expect_key": "db",
"health_expect_value": "ok",
"rollback_on_failure": true
},
{
"name": "domaindingo-prod",
"enabled": true,
"repo": "webdev/domaindingo",
"branch": "prod",
"env": "prod",
"host": "s5.fisher.hu",
"stack_dir": "/home/fisher/S/uas-ng/docker/domaindingo/s5.fisher.hu",
"compose_file": "docker-compose-prod.yml",
"compose_project": "domaindingo-prod",
"container": "domaindingo-prod",
"image_repo": "gitea.fisher.hu/webdev/domaindingo",
"image_tag_template": "{branch}-sha-{short7}",
"image_env_var": "DOMAINDINGO_PROD_IMAGE",
"pull_policy_env_var": "DOMAINDINGO_PROD_PULL_POLICY",
"health_url": "http://127.0.0.1:9103/health",
"health_expect_key": "db",
"health_expect_value": "ok",
"rollback_on_failure": true
}
]
}