-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Complete cri grpc plugin config migration #11061
Conversation
|
||
// Currently only a single key migrated |
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.
// Currently only a single key migrated
@dmcgowan I wonder if this is intended or not. Appreciate any pointer if there are other changes required to migrate other keys.
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.
I'm trying to follow the history on this one, it was moved before the migration so it might have just been missed 65b3922
I'm wondering if this copy approach is the best, it seems just to be stripping out the other values but that shouldn't be necessary. Ideally when values are migrated the migration cleans up the value in the original struct, so if these values aren't moving, they shouldn't need to be copied.
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.
Ideally when values are migrated the migration cleans up the value in the original struct
That means a field can only be used by 1 plugin at a time. If a field (say config.containerd.runtime
) is used by 2 independent plugins (e.g., cri-runtime, cri-image) during migration, neither of them can clean up the value in the original struct (cri-grpc).
Then when we map the original struct to the new cri-grpc ServerConfig
struct, it will print some confusing warnings (unknown key in TOML) #10959, due to no corresponding fields in golang struct.
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.
Yeah, you are right, the cri config is pretty messy and migration isn't that straight forward. Always overwriting like you are doing here is fine
/test pull-containerd-k8s-e2e-ec2 |
We should get this into the first patch release for 2.0 It is worth looking into whether we should have a non default config migration test, seems this is missed is the migration test since we only test the default case. We might be missing cases where a value gets overrode with a default. |
SG, will create a backport.
Agreed, since with default only it's hard to tell if a value comes from migration or just the default in new config. I will create a migration integration test for non-default configs. |
5238b76
to
b16d13d
Compare
added UT for cri grpc config migration |
Signed-off-by: Jin Dong <[email protected]>
b16d13d
to
8540fed
Compare
Signed-off-by: Derek McGowan <[email protected]>
7661fe1
to
ed39dfa
Compare
Added an integration test to show it fixes the migration case against a custom config |
/cherrypick release/2.0 |
@djdongjin: new pull request created: #11140 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
It seems CRI GRPC plugin config cannot be migrated (other than
disable_tcp_service
). This PR make sure all fields in v3plugins."io.containerd.grpc.v1.cri"
are migrated from v2plugins."io.containerd.grpc.v1.cri"
.Running
sudo ./bin/containerd -c test.toml config migrate
on this v2 cri grpc config:The migrated
plugins."io.containerd.grpc.v1.cri"
in main branch (only default values):After this change: