We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 001c4fd commit 2b15765Copy full SHA for 2b15765
src/k8s/kube.rs
@@ -82,11 +82,11 @@ impl Kube {
82
],
83
"resources": {
84
"requests": {
85
- "cpu": resources.minimum.cpu,
+ "cpu": format!("{}", resources.minimum.cpu),
86
"memory": format!("{}M", resources.minimum.ram)
87
},
88
"limits": {
89
- "cpu": resources.maximum.cpu,
+ "cpu": format!("{}", resources.maximum.cpu),
90
"memory": format!("{}M", resources.maximum.ram)
91
}
92
0 commit comments