You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the containerd config file you will find settings for persistent and runtime storage locations as well as grpc, debug, and metrics addresses for the various APIs.
80
80
81
81
There are a few settings that are important for ops.
82
-
The first setting is the `oom_score`. Because containerd will be managing multiple containers, we need to ensure that containers are killed before the containerd daemon in an out of memory condition.
82
+
The first setting is the `oom_score`. Because containerd will be managing multiple containers, we need to ensure that containers are killed before the containerd daemon gets into an out of memory condition.
83
83
We also do not want to make containerd unkillable, but we want to lower its score to the level of other system daemons.
84
84
85
85
containerd also exports its own metrics as well as container level metrics via the prometheus metrics format.
@@ -196,6 +196,8 @@ The only way we can do this is via the config file and not CLI flags.
196
196
In the config file you can specify plugin level options for the set of plugins that you use via the `[plugins.<name>]` sections.
197
197
You will have to read the plugin specific docs to find the options that your plugin accepts.
198
198
199
+
See [containerd's Plugin documentation](./PLUGINS.md)
200
+
199
201
### Linux Runtime Plugin
200
202
201
203
The linux runtime allows a few options to be set to configure the shim and the runtime that you are using.
0 commit comments