Skip to content

Commit 2b15765

Browse files
committed
Fix
1 parent 001c4fd commit 2b15765

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/k8s/kube.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ impl Kube {
8282
],
8383
"resources": {
8484
"requests": {
85-
"cpu": resources.minimum.cpu,
85+
"cpu": format!("{}", resources.minimum.cpu),
8686
"memory": format!("{}M", resources.minimum.ram)
8787
},
8888
"limits": {
89-
"cpu": resources.maximum.cpu,
89+
"cpu": format!("{}", resources.maximum.cpu),
9090
"memory": format!("{}M", resources.maximum.ram)
9191
}
9292
},

0 commit comments

Comments
 (0)