[PR #273] [MERGED] feat: enhance server configuration with Tailscale support #410

Closed
opened 2026-03-03 11:29:49 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/dflow-sh/dflow/pull/273
Author: @akhil-naidu
Created: 6/27/2025
Status: Merged
Merged: 6/27/2025
Merged by: @akhil-naidu

Base: mainHead: feat/tailscale-integration


📝 Commits (10+)

  • 8ad8d92 feat: enhance server configuration with Tailscale support and connection type selection
  • 5327d24 fix: update Tailscale hostname in entrypoint script from "railway-container" to "dflow"
  • 62ece39 fix: enforce required connection type for server configuration and update default value to Tailscale
  • 5a41c02 Merge pull request #272 from akhil-naidu/main
  • cc908e5 refactor: enhance SSH connection types and validation for server configuration
  • 365105b feat: implement SSH and Tailscale connection utilities with detailed validation and command execution
  • 61ff85a refactor: enhance populateDokkuVersion hook with detailed connection handling and error management
  • 4b48803 feat: add support for Tailscale connection type across various actions and components
  • 7ea5236 refactor: streamline SSH and Tailscale connection handling, improving command execution and error management
  • 363e8c7 chore: refactored ssh.ts file

📊 Changes

24 files changed (+701 additions, -271 deletions)

View changed files

📝 scripts/entrypoint.sh (+2 -2)
📝 src/actions/cloud/aws/index.ts (+1 -0)
📝 src/actions/cloud/index.ts (+1 -0)
📝 src/actions/server/index.ts (+47 -5)
📝 src/actions/server/validator.ts (+17 -13)
📝 src/actions/service/index.ts (+3 -2)
📝 src/actions/tailscale/index.ts (+1 -1)
📝 src/actions/terminal/index.ts (+1 -1)
📝 src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[id]/service/[serviceId]/page.tsx (+8 -1)
📝 src/app/(frontend)/(dashboard)/[organisation]/servers/[id]/page.tsx (+9 -2)
📝 src/components/servers/AttachCustomServerForm.tsx (+4 -3)
📝 src/components/servers/DomainList.tsx (+2 -2)
📝 src/components/servers/TailscaleForm.tsx (+58 -6)
📝 src/components/servers/UpdateEC2InstanceForm.tsx (+1 -1)
📝 src/components/servers/UpdateServerForm.tsx (+3 -3)
📝 src/components/servers/monitoring/Monitoring.tsx (+8 -2)
📝 src/components/service/DatabaseForm.tsx (+8 -1)
src/lib/ssh-default.ts (+145 -0)
📝 src/lib/ssh.ts (+70 -174)
📝 src/payload-types.ts (+86 -3)

...and 4 more files

📄 Description

  • Tailscale integration added

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/dflow-sh/dflow/pull/273 **Author:** [@akhil-naidu](https://github.com/akhil-naidu) **Created:** 6/27/2025 **Status:** ✅ Merged **Merged:** 6/27/2025 **Merged by:** [@akhil-naidu](https://github.com/akhil-naidu) **Base:** `main` ← **Head:** `feat/tailscale-integration` --- ### 📝 Commits (10+) - [`8ad8d92`](https://github.com/dflow-sh/dflow/commit/8ad8d9275c3d54e54d90e5d21af0acccb5237fe3) feat: enhance server configuration with Tailscale support and connection type selection - [`5327d24`](https://github.com/dflow-sh/dflow/commit/5327d244b29f18f17c0c9957e6424177dd2a95de) fix: update Tailscale hostname in entrypoint script from "railway-container" to "dflow" - [`62ece39`](https://github.com/dflow-sh/dflow/commit/62ece39e628845f3722b25f2eb4ca4a6e0810d93) fix: enforce required connection type for server configuration and update default value to Tailscale - [`5a41c02`](https://github.com/dflow-sh/dflow/commit/5a41c02225384a68b9861c95b4da9d0b2624fc06) Merge pull request #272 from akhil-naidu/main - [`cc908e5`](https://github.com/dflow-sh/dflow/commit/cc908e582b9cf180b484d602953643ff9559cbe8) refactor: enhance SSH connection types and validation for server configuration - [`365105b`](https://github.com/dflow-sh/dflow/commit/365105b8417c79b1feb7d9eec14d523910f4dac3) feat: implement SSH and Tailscale connection utilities with detailed validation and command execution - [`61ff85a`](https://github.com/dflow-sh/dflow/commit/61ff85a42dcff32d5bfd6e92ea40a64c9dbe27fa) refactor: enhance populateDokkuVersion hook with detailed connection handling and error management - [`4b48803`](https://github.com/dflow-sh/dflow/commit/4b48803c56222d798042d7923ca6fd7f57e362ad) feat: add support for Tailscale connection type across various actions and components - [`7ea5236`](https://github.com/dflow-sh/dflow/commit/7ea5236193473b97f5eeb6048e31212076c2cb0f) refactor: streamline SSH and Tailscale connection handling, improving command execution and error management - [`363e8c7`](https://github.com/dflow-sh/dflow/commit/363e8c776d6d755a7ae5bcb59b827bcdbe93d134) chore: refactored ssh.ts file ### 📊 Changes **24 files changed** (+701 additions, -271 deletions) <details> <summary>View changed files</summary> 📝 `scripts/entrypoint.sh` (+2 -2) 📝 `src/actions/cloud/aws/index.ts` (+1 -0) 📝 `src/actions/cloud/index.ts` (+1 -0) 📝 `src/actions/server/index.ts` (+47 -5) 📝 `src/actions/server/validator.ts` (+17 -13) 📝 `src/actions/service/index.ts` (+3 -2) 📝 `src/actions/tailscale/index.ts` (+1 -1) 📝 `src/actions/terminal/index.ts` (+1 -1) 📝 `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[id]/service/[serviceId]/page.tsx` (+8 -1) 📝 `src/app/(frontend)/(dashboard)/[organisation]/servers/[id]/page.tsx` (+9 -2) 📝 `src/components/servers/AttachCustomServerForm.tsx` (+4 -3) 📝 `src/components/servers/DomainList.tsx` (+2 -2) 📝 `src/components/servers/TailscaleForm.tsx` (+58 -6) 📝 `src/components/servers/UpdateEC2InstanceForm.tsx` (+1 -1) 📝 `src/components/servers/UpdateServerForm.tsx` (+3 -3) 📝 `src/components/servers/monitoring/Monitoring.tsx` (+8 -2) 📝 `src/components/service/DatabaseForm.tsx` (+8 -1) ➕ `src/lib/ssh-default.ts` (+145 -0) 📝 `src/lib/ssh.ts` (+70 -174) 📝 `src/payload-types.ts` (+86 -3) _...and 4 more files_ </details> ### 📄 Description - [x] Tailscale integration added --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 11:29:49 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/dflow#410
No description provided.