Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nats: auth proposal #41

Draft
wants to merge 51 commits into
base: orchestrator-client
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
e64e466
auth update
JettTech Dec 17, 2024
6b6dfba
Merge branch 'nats-crates' into nats-proposal-auth
JettTech Dec 18, 2024
ab30d6b
Merge branch 'nats-crates' into nats-proposal-auth
JettTech Dec 18, 2024
dee1a41
Merge branch 'nats-crates' into nats-proposal-auth
JettTech Dec 18, 2024
271432b
add client auth
JettTech Dec 18, 2024
23f981d
remove node type name alias
JettTech Dec 18, 2024
af3736a
origin merge db updates
JettTech Dec 18, 2024
e8ad6e9
add auth structure
JettTech Dec 19, 2024
3280be6
merge updated base
JettTech Dec 19, 2024
1f89b6b
Merge branch 'nats-crates' into nats-proposal-auth
JettTech Jan 7, 2025
9b19e5a
restore db-url helper
JettTech Jan 7, 2025
746657b
Merge branch 'nats-crates' into nats-proposal-auth
JettTech Jan 15, 2025
cbaaac3
update orchestrator workload to latest pattern
JettTech Jan 15, 2025
4e7c097
Merge branch 'nats-crates' into nats-proposal-auth
JettTech Jan 15, 2025
6f18fd1
adjust auth to updated service pattern
JettTech Jan 15, 2025
9bc4b32
clean up
JettTech Jan 15, 2025
ebdf3bf
restore util file
JettTech Jan 15, 2025
8137839
lint
JettTech Jan 15, 2025
cf192f1
Merge branch 'nats-crates' into nats-proposal-auth
JettTech Jan 15, 2025
5e90d8f
clean-up dirs
JettTech Jan 15, 2025
b065def
fix types
JettTech Jan 16, 2025
04dc7b2
Merge branch 'nats-crates' into nats-proposal-auth
JettTech Jan 16, 2025
caee259
Merge branch 'main' into nats-proposal-auth
JettTech Jan 17, 2025
2dd2513
Merge branch 'main' into nats-proposal-auth
JettTech Jan 17, 2025
a99108c
Merge branch 'nats-proposal-auth' of github.com:Holo-Host/holo-host i…
JettTech Jan 17, 2025
5884150
update names
JettTech Jan 18, 2025
0ecd15a
auth service updates
JettTech Jan 20, 2025
74c7f06
clean inline comments
JettTech Jan 20, 2025
3f9b438
standarize service name ref
JettTech Jan 20, 2025
a03d0de
update naming
JettTech Jan 20, 2025
bd90760
Merge branch 'orchestrator-client' into nats-proposal-auth
JettTech Jan 20, 2025
4e72bfd
Merge branch 'orchestrator-client' into nats-proposal-auth
JettTech Jan 20, 2025
d8a5c97
clean auth api pattern
JettTech Jan 20, 2025
f63286f
tidy descriptions and typing
JettTech Jan 21, 2025
683f41f
Merge branch 'orchestrator-client' into nats-proposal-auth
JettTech Jan 21, 2025
0679beb
Merge branch 'orchestrator-client' into nats-proposal-auth
JettTech Jan 21, 2025
f6373f4
Merge branch 'orchestrator-client' into nats-proposal-auth
JettTech Jan 21, 2025
55057d0
Merge commit '2bc73c45fbe27d9578e516fd88d9269235644259' into nats-pro…
JettTech Jan 21, 2025
a0affdd
Merge branch 'orchestrator-client' into nats-proposal-auth
JettTech Jan 21, 2025
3a88a94
clean up env vars
JettTech Jan 21, 2025
9f43a01
auth updates
JettTech Jan 22, 2025
a3fcea7
Merge branch 'orchestrator-client' into nats-proposal-auth
JettTech Jan 27, 2025
57060c3
auth update
JettTech Feb 3, 2025
28491f4
auth clean-up
JettTech Feb 5, 2025
bf93fd9
rust fmt
JettTech Feb 5, 2025
933e0f4
Merge branch 'nats-proposal-auth' of github.com:Holo-Host/holo-host i…
JettTech Feb 5, 2025
0ed68c9
lint
JettTech Feb 5, 2025
e9203ab
tidy env vars
JettTech Feb 5, 2025
fce6d28
use env vars for callut auth keys
JettTech Feb 5, 2025
45b30d0
update link paths
JettTech Feb 5, 2025
74dd850
test
JettTech Feb 6, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
NSC_PATH = "<path/to/nsc_dir>"
HOST_CREDS_FILE_PATH = "ops/admin.creds"
MONGO_URI = "mongodb://<host>:<port>"
NATS_HUB_SERVER_URL = "nats://<path/to/leaf>:<port>"
LEAF_SERVER_USER = "test-user"
LEAF_SERVER_PW = "pw-123456789"
NSC_PATH="<path/to/nsc_dir>"
HOST_NKEY_PATH="<path>/host.nk"
SYS_NKEY_PATH="<path>/sys.nk"
NATS_URL="nats:/<domain>:<port>"
NATS_LISTEN_PORT="<port>"
LEAF_SERVER_DEFAULT_LISTEN_PORT="<port>"
MONGO_URI="mongodb://<host>:<port>"
HPOS_CONFIG_PATH="path/to/file.config";
DEVICE_SEED_DEFAULT_PASSWORD="device_pw_1234"
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ rust/*/*/leaf_server.conf
rust/*/*/resolver.conf
leaf_server.conf
.local

rust/*/*/*/tmp/
rust/*/*/*/*/tmp/
Loading