-
Notifications
You must be signed in to change notification settings - Fork 243
config type target #3745
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
Open
plorenz
wants to merge
8
commits into
main
Choose a base branch
from
config-type-target
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
config type target #3745
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
90b22ed
Add a doc about potential anycast support for links
plorenz cc73a83
Add an initial doc exploring controller managed router configuration
plorenz 0b103ba
Updated with review comments and additions regarding collapsing the r…
plorenz 6134f09
Update based on review feedback
plorenz b112045
More updates from review changes
plorenz 1d4b665
Add a rough implementation plan
plorenz 5288e9e
Add note on config permissions
plorenz 08598e4
Add target field to config types. Fixes #3743
plorenz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| # Release 2.1.0 | ||
|
|
||
| ## What's New | ||
|
|
||
| * Config Type Target Field | ||
|
|
||
| ## Config Type Target Field | ||
|
|
||
| Config types now have an optional `target` field that indicates what kind of entity the config type | ||
| is intended for. Valid values are `"service"` and `"router"`. The field is set on creation and is | ||
| immutable afterward. | ||
|
|
||
| This is the first step toward controller-managed router configuration. The `target` field lets us | ||
| distinguish between config types meant for services and config types meant for routers, which keeps | ||
| UIs, APIs, and validation clean. See `doc/design/ctrl-managed-router-config.md` for the full design. | ||
|
|
||
| A database migration sets `target = "service"` on all existing config types. Services and identity | ||
| service config overrides now require that referenced configs have a config type with | ||
| `target = "service"`. | ||
|
|
||
| The CLI has been updated to support the new field: | ||
|
|
||
| * `ziti edge create config-type` now accepts a `--target` flag | ||
| * `ziti edge list config-types` now shows a `Target` column |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why optional? I assume this is for backward compatibility, but
optionalmakesstringbe*stringand doesn't really do much else besides letting us detect whether it was explicitly set or not. I don't see a reason to detect whether a setting is set or not.I assume that the default is a target value of "service," and we could create an enum that does this:
Then the config type can be the enum type and default cleanly to 0 and not have to deal w/ pointer refs.