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

feat: Extend snap getting started docs #751

Merged
merged 29 commits into from
May 6, 2022
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
adc5eb2
feat(microservices): add snap config section
farshidtz Mar 15, 2022
a8a045b
feat: Extend the edgexfoundry snap docs
farshidtz Mar 16, 2022
a1e38b3
feat: add config options instructions
farshidtz Apr 29, 2022
557b98d
feat: Config and edgexfoundry snap updates
farshidtz May 1, 2022
a65d869
feat: update security config
farshidtz May 2, 2022
08afef9
feat: simplify sections
farshidtz May 2, 2022
c214797
feat: add ui instructions
farshidtz May 2, 2022
7e386bf
feat: add reference headers
farshidtz May 3, 2022
50055f6
feat: token interface and reference updates
farshidtz May 4, 2022
7d91303
feat: token interface, collapsable notes
farshidtz May 4, 2022
353493f
feat: remove temp snap config pages
farshidtz May 4, 2022
cc7390c
feat: fill eKuiper section
farshidtz May 4, 2022
6c00ca7
feat: add ekuiper, cleanup asc
farshidtz May 4, 2022
414f2ef
fix: change to app-options
farshidtz May 5, 2022
4a3d0b3
fix: improve tip titles
farshidtz May 5, 2022
97d26b8
feat: add app-rfid-llrp-inventory
farshidtz May 5, 2022
5777cb5
feat: add device-gpio
farshidtz May 5, 2022
e1252e7
feat: describe loglevel option
farshidtz May 5, 2022
78e550c
feat: add remaining snaps
farshidtz May 5, 2022
ed17151
fix: revert secret store section title
farshidtz May 6, 2022
869e311
fix: typo and formatting
farshidtz May 6, 2022
7c9f2c4
feat: describe device profile uploads
farshidtz May 6, 2022
a994981
fix: KONG_ADMIN_JWT_FILE -> KONG_ADMIN_JWT
farshidtz May 6, 2022
ebb4b88
fix: device profile descr fix
farshidtz May 6, 2022
e0e7a3c
fix: add missing snap name to set command
farshidtz May 6, 2022
a95f11f
fix: pass consul token in file, rename user jwt for consistency
farshidtz May 6, 2022
a1a9159
fix: remove $ rfid app in commands
farshidtz May 6, 2022
35252c6
fix: clarify custom TLS example
farshidtz May 6, 2022
a558346
fix: change tls cert section title
farshidtz May 6, 2022
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
1 change: 1 addition & 0 deletions docs_src/getting-started/Ch-GettingStartedSnapUsers.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ EdgeX snaps are packaged with default service configuration files. In certain ca
#### Config files
The default configuration files are typically placed at `/var/snap/<snap>/current/config`. Upon startup, the server configurations files are uploaded to the registry by default. Once the service starts without errors, the local configurations become obsolete and will no longer be read. Any modifications after the initial startup will not be applied.

For device services, the configurations of Device and Device Profile are submitted to [Core Metadata](../../microservices/core/metadata/Ch-Metadata) upon startup. Refer to the documentation of [Device Services](../../microservices/device/Ch-DeviceServices/) for details.
MonicaisHer marked this conversation as resolved.
Show resolved Hide resolved

#### Config registry
The configurations that are uploaded to Consul can be modified using Consul's UI or [kv REST API](https://www.consul.io/api/kv). Changes to configurations in Consul are loaded by the service at startup. If the service has already started, a restart is required to load new configurations. Configurations that are in the writable section get loaded not only at startup, but also during the runtime. In other words, changes to the writable configurations are loaded automatically without a restart. Please refer to
Expand Down