OPS - TASKER: capture editable logo link overlay

This commit is contained in:
Codex
2026-05-14 16:25:20 +03:00
parent d3af184096
commit 25d3004cef
14 changed files with 986 additions and 0 deletions
@@ -0,0 +1,30 @@
# Tasker overlay: editable NODE.DC logo link
This overlay captures the Synology Tasker source hotfix that routes NODE.DC logo clicks through the Hub public brand config:
- Hub source of truth: `https://hub.nodedc.ru/api/public/brand`
- Editable admin field: Hub admin → Platform → Misc → Logo link
- Fallback for `*.nodedc.ru`: `https://hub.nodedc.ru/`
## Apply to Synology source
From the platform repo root on a machine that has `/Volumes/docker` mounted:
```bash
rsync -av infra/synology/tasker-overlays/logo-link-brand-hotfix/files/ \
/Volumes/docker/nodedc-platform/tasker/plane-src/
```
Then deploy web only:
```bash
cd /volume1/docker/nodedc-platform/tasker/plane-src
BUILD_BACKEND=0 BUILD_WEB=1 BUILD_ADMIN=0 sh rebuild-nas-legacy.sh
```
Admin image can be rebuilt separately if needed:
```bash
cd /volume1/docker/nodedc-platform/tasker/plane-src
BUILD_BACKEND=0 BUILD_WEB=0 BUILD_ADMIN=1 sh rebuild-nas-legacy.sh
```