Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
deploy
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Odysseus
deploy
Commits
5358414d
Commit
5358414d
authored
Feb 02, 2024
by
贾浩@五瓣科技
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
7660142f
91c3c8f3
Pipeline
#679
canceled with stages
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
92 additions
and
0 deletions
+92
-0
config.toml
conf/nodemanager/config.toml
+27
-0
config.toml
conf/schedule/config.toml
+20
-0
docker-compose-nm.yml
docker-compose-nm.yml
+45
-0
No files found.
conf/nodemanager/config.toml
0 → 100644
View file @
5358414d
host
=
"127.0.0.1"
port
=
10001
metrics_port
=
28010
private_key
=
"E671C143A110C239B563F702E9F4017CA6B2B2912F675EED9AA4FED684EB30CC"
enable_pay
=
false
[redis]
addr
=
"127.0.0.1:6379"
password
=
"123456"
db
=
0
[mysql]
host
=
"192.168.1.211"
port
=
3306
user
=
"root"
password
=
"12345678"
database
=
"liuxuzhong"
[kafka]
brokers
=
"127.0.0.1:9092"
receipt_topic
=
"taskreceipt"
[ticker]
heart_beat
=
10
status_ticker
=
10
device_info_ticker
=
120
device_usage_ticker
=
100
conf/schedule/config.toml
0 → 100644
View file @
5358414d
endpoint
=
":10002"
metrics_port
=
28012
routines
=
1
[redis]
addr
=
"127.0.0.1:6379"
password
=
"123456"
db
=
0
[mysql]
host
=
"192.168.1.211"
port
=
3306
user
=
"root"
password
=
"12345678"
database
=
"liuxuzhong"
[kafka]
brokers
=
"192.168.1.10:9092"
task_topic
=
"pbaigc"
receipt_topic
=
"taskreceipt"
docker-compose-nm.yml
0 → 100644
View file @
5358414d
version
:
"
3.9"
services
:
nodemanager
:
image
:
caduceus/ai-node-mgr
container_name
:
nodemanager
entrypoint
:
/usr/bin/manager --loglevel debug
deploy
:
restart_policy
:
condition
:
on-failure
delay
:
1s
max_attempts
:
100
window
:
120s
ports
:
-
"
10001:10001"
-
"
28010:28010"
volumes
:
-
./conf/nodemanager/config.toml:/root/config.toml
networks
:
-
odysseus
scheduler
:
image
:
caduceus/ai-scheduler
container_name
:
scheduler
entrypoint
:
/usr/bin/scheduler --loglevel debug
deploy
:
restart_policy
:
condition
:
on-failure
delay
:
1s
max_attempts
:
100
window
:
120s
ports
:
-
"
10002:10002"
-
"
28012:28012"
volumes
:
-
./conf/schedule/config.toml:/root/config.toml
networks
:
-
odysseus
networks
:
odysseus
:
driver
:
bridge
ipam
:
config
:
-
subnet
:
172.100.0.0/16
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment