Skip to content

Commit c334ae6

Browse files
authored
Merge pull request #11256 from k8s-infra-cherrypick-robot/cherry-pick-10980-to-release/2.0
[release/2.0] Remove confusing warning in cri runtime config migration
2 parents b48e108 + 468079c commit c334ae6

File tree

2 files changed

+142
-17
lines changed

2 files changed

+142
-17
lines changed

plugins/cri/runtime/plugin.go

+73-17
Original file line numberDiff line numberDiff line change
@@ -51,20 +51,8 @@ func init() {
5151
Requires: []plugin.Type{
5252
plugins.WarningPlugin,
5353
},
54-
ConfigMigration: func(ctx context.Context, configVersion int, pluginConfigs map[string]interface{}) error {
55-
if configVersion >= version.ConfigVersion {
56-
return nil
57-
}
58-
c, ok := pluginConfigs[string(plugins.GRPCPlugin)+".cri"]
59-
if !ok {
60-
return nil
61-
}
62-
conf := c.(map[string]interface{})
63-
migrateConfig(conf)
64-
pluginConfigs[string(plugins.CRIServicePlugin)+".runtime"] = conf
65-
return nil
66-
},
67-
InitFn: initCRIRuntime,
54+
ConfigMigration: configMigration,
55+
InitFn: initCRIRuntime,
6856
})
6957
}
7058

@@ -198,12 +186,79 @@ func setGLogLevel() error {
198186
return nil
199187
}
200188

201-
func migrateConfig(conf map[string]interface{}) {
202-
containerdConf, ok := conf["containerd"]
189+
func configMigration(ctx context.Context, configVersion int, pluginConfigs map[string]interface{}) error {
190+
if configVersion >= version.ConfigVersion {
191+
return nil
192+
}
193+
src, ok := pluginConfigs[string(plugins.GRPCPlugin)+".cri"].(map[string]interface{})
194+
if !ok {
195+
return nil
196+
}
197+
dst, ok := pluginConfigs[string(plugins.CRIServicePlugin)+".runtime"].(map[string]interface{})
198+
if !ok {
199+
dst = make(map[string]interface{})
200+
}
201+
migrateConfig(dst, src)
202+
pluginConfigs[string(plugins.CRIServicePlugin)+".runtime"] = dst
203+
return nil
204+
}
205+
206+
func migrateConfig(dst, src map[string]interface{}) {
207+
for k, v := range src {
208+
switch k {
209+
case "containerd":
210+
// skip (handled separately below)
211+
continue
212+
case
213+
"sandbox_image",
214+
"registry",
215+
"image_decryption",
216+
"max_concurrent_downloads",
217+
"image_pull_progress_timeout",
218+
"image_pull_with_sync_fs",
219+
"stats_collect_period":
220+
// skip (moved to cri image service plugin)
221+
continue
222+
case
223+
"disable_tcp_service",
224+
"stream_server_address",
225+
"stream_server_port",
226+
"stream_idle_timeout",
227+
"enable_tls_streaming",
228+
"x509_key_pair_streaming":
229+
// skip (moved to cri ServerConfig)
230+
continue
231+
default:
232+
if _, ok := dst[k]; !ok {
233+
dst[k] = v
234+
}
235+
}
236+
}
237+
238+
// migrate cri containerd configs
239+
containerdConf, ok := src["containerd"].(map[string]interface{})
203240
if !ok {
204241
return
205242
}
206-
runtimesConf, ok := containerdConf.(map[string]interface{})["runtimes"]
243+
newContainerdConf, ok := dst["containerd"].(map[string]interface{})
244+
if !ok {
245+
newContainerdConf = map[string]interface{}{}
246+
}
247+
for k, v := range containerdConf {
248+
switch k {
249+
case "snapshotter", "disable_snapshot_annotations", "discard_unpacked_layers":
250+
// skip (moved to cri image service plugin)
251+
continue
252+
default:
253+
if _, ok := newContainerdConf[k]; !ok {
254+
newContainerdConf[k] = v
255+
}
256+
}
257+
}
258+
dst["containerd"] = newContainerdConf
259+
260+
// migrate runtimes configs
261+
runtimesConf, ok := newContainerdConf["runtimes"]
207262
if !ok {
208263
return
209264
}
@@ -212,6 +267,7 @@ func migrateConfig(conf map[string]interface{}) {
212267
if sandboxMode, ok := runtimeConf["sandbox_mode"]; ok {
213268
if _, ok := runtimeConf["sandboxer"]; !ok {
214269
runtimeConf["sandboxer"] = sandboxMode
270+
delete(runtimeConf, "sandbox_mode")
215271
}
216272
}
217273
}

plugins/cri/runtime/plugin_test.go

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/*
2+
Copyright The containerd Authors.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
package runtime
18+
19+
import (
20+
"context"
21+
"testing"
22+
23+
"github.com/stretchr/testify/assert"
24+
"github.com/stretchr/testify/require"
25+
26+
"github.com/containerd/containerd/v2/plugins"
27+
)
28+
29+
func TestCRIRuntimePluginConfigMigration(t *testing.T) {
30+
runcSandboxer := "podsandbox"
31+
32+
grpcCri := map[string]interface{}{
33+
"enable_selinux": true,
34+
"max_container_log_line_size": 100,
35+
"max_concurrent_downloads": 3, // removed since it's moved to cri image service
36+
"disable_tcp_service": true, // removed since it's moved to cri grpc service
37+
"containerd": map[string]interface{}{
38+
"runtimes": map[string]interface{}{
39+
"runc": map[string]interface{}{
40+
"sandbox_mode": runcSandboxer,
41+
},
42+
},
43+
},
44+
}
45+
46+
pluginConfigs := map[string]interface{}{
47+
string(plugins.GRPCPlugin) + ".cri": grpcCri,
48+
}
49+
configMigration(context.Background(), 2, pluginConfigs)
50+
51+
runtimeConf, ok := pluginConfigs[string(plugins.CRIServicePlugin)+".runtime"].(map[string]interface{})
52+
require.True(t, ok)
53+
require.NotNil(t, runtimeConf)
54+
assert.Equal(t, grpcCri["enable_selinux"], runtimeConf["enable_selinux"])
55+
assert.Equal(t, grpcCri["max_container_log_line_size"], runtimeConf["max_container_log_line_size"])
56+
assert.NotContains(t, runtimeConf, "max_concurrent_downloads")
57+
assert.NotContains(t, runtimeConf, "disable_tcp_service")
58+
59+
ctd, ok := runtimeConf["containerd"].(map[string]interface{})
60+
require.True(t, ok)
61+
require.NotNil(t, ctd)
62+
63+
runtimes := ctd["runtimes"].(map[string]interface{})
64+
runc, ok := runtimes["runc"].(map[string]interface{})
65+
require.True(t, ok)
66+
require.NotNil(t, runc)
67+
assert.Equal(t, runcSandboxer, runc["sandboxer"])
68+
assert.NotContains(t, runc, "sandbox_mode")
69+
}

0 commit comments

Comments
 (0)