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

instance/config: Mark user keys as live updatable #1404

Merged
merged 2 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion doc/config_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ Specify the kernel modules as a comma-separated list.
```

```{config:option} user.* instance-miscellaneous
:liveupdate: "no"
:liveupdate: "yes"
:shortdesc: "Free-form user key/value storage"
:type: "string"
User keys can be used in search.
Expand Down
2 changes: 1 addition & 1 deletion internal/instance/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -1065,7 +1065,7 @@ var InstanceConfigKeysVM = map[string]func(value string) error{
// User keys can be used in search.
// ---
// type: string
// liveupdate: no
// liveupdate: yes
// shortdesc: Free-form user key/value storage

// gendoc:generate(entity=instance, group=miscellaneous, key=agent.nic_config)
Expand Down
2 changes: 1 addition & 1 deletion internal/server/metadata/configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@
},
{
"user.*": {
"liveupdate": "no",
"liveupdate": "yes",
"longdesc": "User keys can be used in search.",
"shortdesc": "Free-form user key/value storage",
"type": "string"
Expand Down
Loading