Skip to content
This repository was archived by the owner on Mar 9, 2022. It is now read-only.

Support runtime specific configurations. #943

Merged

Conversation

Random-Liu
Copy link
Member

@Random-Liu Random-Liu commented Oct 8, 2018

Fixes containerd/containerd#2701.

Support per-runtime configuration in the cri config file. The newly introduced Options field can be any type. Currently, only supported types are options.Options for shim v2, and runctypes.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 the kata runtime:

[plugins.cri.containerd.default_runtime]                                                                                           
  runtime_type = "io.containerd.runtime.v1.linux"
# https://github.com/containerd/containerd/blob/v1.2.0-rc.1/runtime/linux/runctypes/runc.pb.go#L40
[plugins.cri.containerd.default_runtime.options]
  Runtime = "runc"
  RuntimeRoot = "/run/containerd/default"

[plugins.cri.containerd.runtimes.runc]
  runtime_type = "io.containerd.runc.v1"
# 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]
  BinaryName = "runc"
  Root = "/run/containerd/runc"

[plugins.cri.containerd.runtimes.kata]
  runtime_type = "io.containerd.runtime.kata.v2"

Note that the deprecated daemon level config systemd_cgroup, no_pivot, and runtime level config runtime_engine, runtime_root still work for the legacy runtime io.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]

@k8s-ci-robot
Copy link

@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:

Support per-runtime configuration in cri config file.

The newly introduced Options field can accept any 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 the kata runtime:

[plugins.cri.containerd.default_runtime]                                                                                           
 runtime_type = "io.containerd.runtime.v1.linux"
[plugins.cri.containerd.default_runtime.options]
 Runtime = "runc"
 RuntimeRoot = "/run/containerd/default"

[plugins.cri.containerd.runtimes.runc]
 runtime_type = "io.containerd.runc.v1"
[plugins.cri.containerd.runtimes.runc.options]
 BinaryName = "runc"
 Root = "/run/containerd/runc"

[plugins.cri.containerd.runtimes.kata]
 runtime_type = "io.containerd.runtime.kata.v2"

Note that the deprecated daemon level config systemd_cgroup, no_pivot, and runtime level config runtime_engine, runtime_root still work for the legacy runtime io.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]

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.

@Random-Liu Random-Liu added this to the v1.2 milestone Oct 8, 2018
@Random-Liu
Copy link
Member Author

/test pull-cri-containerd-verify

Copy link
Member

@mikebrow mikebrow left a 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
Copy link
Member

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

Copy link
Member

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.

Copy link
Member Author

@Random-Liu Random-Liu Oct 8, 2018

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.

Copy link
Member

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 :-)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will document them then. :)

Copy link
Member

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..

Copy link
Member Author

@Random-Liu Random-Liu Oct 9, 2018

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.

Copy link
Member Author

@Random-Liu Random-Liu Oct 9, 2018

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.

Copy link
Member

@mikebrow mikebrow Oct 9, 2018

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! :-)

Copy link
Member Author

@Random-Liu Random-Liu Oct 9, 2018

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
Copy link
Member

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.

Copy link
Member

@mikebrow mikebrow Oct 9, 2018

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 :-)

@Random-Liu Random-Liu force-pushed the support-per-runtime-config branch 4 times, most recently from 2b9c6c7 to 2c2aacc Compare October 9, 2018 00:15
Copy link
Member

@mikebrow mikebrow left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/LGTM

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants