Add optional runtime config#420
Open
jvigliotta wants to merge 2 commits intomainfrom
Open
Conversation
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



closes #419
Added support for an optional runtime
config.jsonat the root of a built Open MCT instance using the Open MCT for MCWS Plugin. This allows built release artifacts to be configured at deployment time without rebuilding or updating recipe configuration through the Open MCT build tool. Common runtime overrides includemcwsUrl,namespaces, and other MCWS plugin options.Example
config.json:{ "mcwsUrl": "https://example.jpl.nasa.gov/mcws", "namespaces": [ { "key": "mission", "name": "Mission Shared", "url": "/path/to/shared" }, { "userNamespace": true, "key": "mission", "name": "Mission Users", "url": "/path/to/users" } ] }Config precedence is:
config.json > recipe config > plugin defaults
Only keys provided by a higher-precedence config override lower-precedence values. Omitted keys fall back to the recipe config, then plugin defaults.
Release artifacts include a
config.example.jsonfile. Users can copy or rename it toconfig.jsonand update its values if they want to provide runtime configuration overrides.