Skip to content

Commit dd0d58b

Browse files
committed
nodeodm-proxy --> ClusterODM rename
1 parent 2c100d1 commit dd0d58b

23 files changed

+31
-31
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# nodeodm-proxy
1+
# ClusterODM
22
A reverse proxy, load balancer and task tracker for NodeODM
33

44
## Installation

admincli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

adminweb.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify
@@ -31,7 +31,7 @@ module.exports = {
3131
app.use(basicAuth({
3232
users: { 'admin': options.password },
3333
challenge: true,
34-
realm: "nodeodm-proxy"
34+
realm: "ClusterODM"
3535
}));
3636
}
3737

config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify
@@ -60,7 +60,7 @@ Options:
6060
--upload-max-speed <number> Upload to processing nodes speed limit in bytes / second (default: no limit)
6161
--downloads-from-s3 <URL> S3 URL prefix where to redirect /task/<uuid>/download requests. (default: do not use S3, forward download requests to nodes)
6262
--no-cluster By default the program will set itself as being a cluster node for all split/merge tasks. Setting this option disables it. (default: false)
63-
--cluster-address <http(s)://host:port> Should be set to a public URL that worker nodes can use to reach nodeodm-proxy for the purpose of allowing split/merge workflows. (default: match the "host" header from client's HTTP request)
63+
--cluster-address <http(s)://host:port> Should be set to a public URL that worker nodes can use to reach ClusterODM for the purpose of allowing split/merge workflows. (default: match the "host" header from client's HTTP request)
6464
--debug Disable caches and other settings to facilitate debug (default: false)
6565
--ssl-key <file> Path to .pem SSL key file
6666
--ssl-cert <file> Path to SSL .pem certificate

letsencrypt-autogen.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ if [ -z $DOMAIN ]; then
1414
exit 1
1515
fi
1616

17-
echo Stopping nodeodm-proxy services...
18-
systemctl stop "nodeodm-proxy*"
17+
echo Stopping ClusterODM services...
18+
systemctl stop "clusterodm*"
1919

2020
# Generate/update certificate
2121
certbot certonly --work-dir ./letsencrypt --config-dir ./letsencrypt --logs-dir ./letsencrypt --standalone -d $DOMAIN --register-unsafely-without-email --agree-tos --keep
@@ -27,5 +27,5 @@ else
2727
echo -e "\033[91mWARN: We couldn't automatically generate the SSL certificate. Review the console log. WebODM will likely be inaccessible.\033[39m"
2828
fi
2929

30-
echo Starting nodeodm-proxy services...
31-
systemctl start "nodeodm-proxy*"
30+
echo Starting ClusterODM services...
31+
systemctl start "clusterodm*"

libs/classes/AbstractCloudProvider.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

libs/classes/Node.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

libs/classes/ValueCache.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

libs/cloudProvider.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

libs/logger.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

libs/nodes.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

libs/odmOptions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

libs/providers/LightningCloudProvider.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

libs/providers/LightningDevCloudProvider.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

libs/providers/LocalCloudProvider.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

libs/proxy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

libs/routetable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

libs/statusCodes.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

libs/taskNew.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify
@@ -123,7 +123,7 @@ module.exports = {
123123

124124
if (!config.no_cluster){
125125
// We automatically set the "sm-cluster" parameter
126-
// to match the address that was used to reach nodeodm-proxy.
126+
// to match the address that was used to reach ClusterODM.
127127
// if "--split" is set.
128128
const addr = config.cluster_address ?
129129
config.cluster_address :

libs/tasktable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

libs/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* nodeodm-proxy - A reverse proxy, load balancer and task tracker for NodeODM
2+
* ClusterODM - A reverse proxy, load balancer and task tracker for NodeODM
33
* Copyright (C) 2018-present MasseranoLabs LLC
44
*
55
* This program is free software: you can redistribute it and/or modify

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "nodeodm-proxy",
2+
"name": "ClusterODM",
33
"version": "1.1.0",
44
"description": "",
55
"main": "index.js",
@@ -8,7 +8,7 @@
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "https://github.com/MasseranoLabs/nodeodm-proxy"
11+
"url": "https://github.com/OpenDroneMap/ClusterODM"
1212
},
1313
"author": "",
1414
"license": "ISC",

services/nodeodm-proxy.service services/clusterodm.service

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[Unit]
2-
Description=Start nodeodm-proxy Service
2+
Description=Start ClusterODM Service
33

44
[Service]
55
Type=simple
6-
PIDFile=/run/nodeodm-proxy.pid
6+
PIDFile=/run/clusterodm.pid
77
User=odm
88
Group=odm
99
WorkingDirectory=/www

0 commit comments

Comments
 (0)