-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
24 changed files
with
448 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
.. _Remote Node Configuration: | ||
|
||
Remote Node | ||
=========== | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Introduction | ||
------------- | ||
Dagu UI can be configured to connect to remote nodes, allowing management of DAGs across different environments from a single interface. | ||
|
||
How to configure | ||
---------------- | ||
Create ``admin.yaml`` in ``$HOME/.config/dagu/`` to configure remote nodes. Example configuration: | ||
|
||
.. code-block:: yaml | ||
# Remote Node Configuration | ||
remoteNodes: | ||
- name: "dev" # name of the remote node | ||
apiBaseUrl: "http://localhost:8080/api/v1" # Base API URL of the remote node it must end with /api/v1 | ||
# Authentication settings for the remote node | ||
# Basic authentication | ||
isBasicAuth: true # Enable basic auth (optional) | ||
basicAuthUsername: "admin" # Basic auth username (optional) | ||
basicAuthPassword: "secret" # Basic auth password (optional) | ||
# api token authentication | ||
isAuthToken: true # Enable API token (optional) | ||
authToken: "your-secret-token" # API token value (optional) | ||
Using Remote Nodes | ||
----------------- | ||
Once configured, remote nodes can be selected from the dropdown menu in the top right corner of the UI. This allows you to: | ||
|
||
- Switch between different environments | ||
- View and manage DAGs on remote nodes | ||
- Monitor execution status across nodes | ||
|
||
The UI will maintain all functionality while operating on the selected remote node. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.