-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allows each host service to be configured via a portion of the node c…
…onfig (#223) * allows each host service to be configured via a portion of the node config * linter * reuse main connection url if nats url is empty in hsconfig * default host services nats url to empty sentinel string * overflow! run away! * removing debug
- Loading branch information
1 parent
c4b5a7f
commit 947a70e
Showing
14 changed files
with
387 additions
and
122 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"default_resource_dir": "/tmp/wd", | ||
"machine_pool_size": 1, | ||
"cni": { | ||
"network_name": "fcnet", | ||
"interface_name": "veth0" | ||
}, | ||
"machine_template": { | ||
"vcpu_count": 1, | ||
"memsize_mib": 256 | ||
}, | ||
"tags": { | ||
"simple": "true" | ||
}, | ||
"host_services": { | ||
"nats_url": "nats://0.0.0.0:4222", | ||
"nats_user_jwt": "", | ||
"nats_user_seed": "", | ||
"services": { | ||
"kv": { | ||
"enabled": true, | ||
"config": { | ||
"bucket_name": "SAMPLEHSKV_${namespace}_${workload_name}", | ||
"max_bytes": 0, | ||
"jit_provision": false | ||
} | ||
}, | ||
"messaging": { | ||
"enabled": true, | ||
"config": {} | ||
}, | ||
"objectstore": { | ||
"enabled": true, | ||
"config": {} | ||
}, | ||
"http": { | ||
"enabled": false, | ||
"config": {} | ||
} | ||
} | ||
} | ||
} |
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
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
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
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.