-
Notifications
You must be signed in to change notification settings - Fork 348
Support runtime specific configurations. #943
Support runtime specific configurations. #943
Conversation
@Random-Liu: GitHub didn't allow me to request PR reviews from the following users: tallclair. Note that only containerd members and repo collaborators can review this PR, and authors cannot review their own PRs. 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/test-infra repository. |
/test pull-cri-containerd-verify |
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.
See comments. Other than what to do with the docs for new fields the code looks very good!
# "io.containerd.runc.v1". See: | ||
# https://github.com/containerd/containerd/blob/v1.2.0-rc.1/runtime/v2/runc/options/oci.pb.go#L39. | ||
[plugins.cri.containerd.runtimes.runc.options] | ||
NoPivotRoot = false |
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.
let's go ahead and document these here. or generate a runc_options.md file and link to that
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.
also we're missing:
// create a new keyring for the container
NoNewKeyring bool
// place the shim in a cgroup
ShimCgroup string
// set the I/O's pipes uid
IoUid uint32
// set the I/O's pipes gid
IoGid uint32
// criu binary path
CriuPath string
We should list them and if necessary say that they are not supported, yet, and link to an issue for tracking. or you could even have a section for fields not supported. If not supported we need to test for and flag as an error so the user does not try them out. This because the fields are actually there.
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.
All of them are supported now actually. We just pass through whatever configurations from the config file. That is why I just linked to the code, because everything is supported there. I can add that "all fields" are supported.
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.
Granted these .md's could use some more content but probably should document the fields here vs say go read the code :-)
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.
Will document them then. :)
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.
criu supported ? FYI that's checkpoint and restore..
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.
The option is supported, means that you can config it. We are just not using it - there is no code path that checkpoint
or restore
will be called.
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.
We now support whatever configurations supported by the runtime, we directly pass through the config, and don't do anything special in the cri plugin.
For example, if we have a KataOptions type, and contains all kinds of VM specific options, we can support it now with shim v2.
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.
A little surprised but ok, new meta! :-)
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, our goal is to support multiple runtimes now. If not necessary, we may not want to add runtime specific logic, just pass through. :)
if err := toml.PrimitiveDecode(*r.Options, options); err != nil { | ||
return nil, err | ||
} | ||
return options, nil |
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 suppose if we're not supporting those fancy new options we'd fail them here if set.
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.
ok... fail not needed, pass through is the new meta :-)
2b9c6c7
to
2c2aacc
Compare
Signed-off-by: Lantao Liu <[email protected]>
2c2aacc
to
1442425
Compare
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.
/LGTM
Cherrypick #943 to release/1.2
Fixes containerd/containerd#2701.
Support per-runtime configuration in the
cri
config file. The newly introducedOptions
field can be any type. Currently, only supported types areoptions.Options
for shim v2, andrunctypes.RuncOptions
.runctypes.RuncOptions
is the fallback for unknown runtime types.Change
getRuntimeType
to support new option types.Here is an example config which uses runc with shim v1 as the default runtime, runc with shim v2 as the
runc
runtime, and kata as thekata
runtime:Note that the deprecated daemon level config
systemd_cgroup
,no_pivot
, and runtime level configruntime_engine
,runtime_root
still work for the legacy runtimeio.containerd.runtime.v1.linux
. However, 1) they won't work for shim v2 runtimes; 2) they'll be deprecated when shim v1 is deprecated.It is recommended to use the new
Options
field for all runtimes./cc @yujuhong @crosbymichael @tallclair
Signed-off-by: Lantao Liu [email protected]