pub struct SystemControl {
pub namespace: Option<String>,
pub value: Option<String>,
}
Expand description
A list of namespaced kernel parameters to set in the container. This parameter maps to Sysctls
in the Create a container section of the Docker Remote API and the --sysctl
option to docker run.
It is not recommended that you specify network-related systemControls
parameters for multiple containers in a single task that also uses either the awsvpc
or host
network mode for the following reasons:
-
For tasks that use the
awsvpc
network mode, if you setsystemControls
for any container, it applies to all containers in the task. If you set differentsystemControls
for multiple containers in a single task, the container that is started last determines whichsystemControls
take effect. -
For tasks that use the
host
network mode, thesystemControls
parameter applies to the container instance's kernel parameter as well as that of all containers of any tasks running on that container instance.
Fields§
§namespace: Option<String>
The namespaced kernel parameter for which to set a value
.
value: Option<String>
The value for the namespaced kernel parameter specified in namespace
.
Trait Implementations§
Source§impl Clone for SystemControl
impl Clone for SystemControl
Source§fn clone(&self) -> SystemControl
fn clone(&self) -> SystemControl
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more