1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
use crate::utils::UseOrCreate;
use k8s_openapi::api::core::v1::{Container, ResourceRequirements};
use k8s_openapi::apimachinery::pkg::api::resource::Quantity;
pub trait SetResources {
fn set_resources<S1, S2, S3>(
&mut self,
resource_type: S1,
request: Option<S2>,
limit: Option<S3>,
) where
S1: ToString,
S2: ToString,
S3: ToString;
}
impl SetResources for ResourceRequirements {
fn set_resources<S1, S2, S3>(
&mut self,
resource_type: S1,
request: Option<S2>,
limit: Option<S3>,
) where
S1: ToString,
S2: ToString,
S3: ToString,
{
self.requests.use_or_create(|requests| match request {
Some(ref request) => {
requests.insert(resource_type.to_string(), Quantity(request.to_string()))
}
None => requests.remove(&resource_type.to_string()),
});
self.limits.use_or_create(|limits| match limit {
Some(ref limit) => {
limits.insert(resource_type.to_string(), Quantity(limit.to_string()))
}
None => limits.remove(&resource_type.to_string()),
});
}
}
impl SetResources for Container {
fn set_resources<S1, S2, S3>(
&mut self,
resource_type: S1,
request: Option<S2>,
limit: Option<S3>,
) where
S1: ToString,
S2: ToString,
S3: ToString,
{
self.resources.use_or_create(|resources| {
resources.set_resources(resource_type, request, limit);
});
}
}