Commit c1345ce2 authored by Filip Grzadkowski's avatar Filip Grzadkowski

Merge pull request #15068 from wojtek-t/fix_default_limits

Tweak limits for system pods in manifest files.
parents 348f0ca3 2a74d1d6
......@@ -13,10 +13,7 @@
"image": "gcr.io/google_containers/etcd:2.0.12",
"resources": {
"limits": {
"cpu": "200m"
},
"requests": {
"cpu": "100m"
"cpu": {{ cpulimit }}
}
},
"command": [
......
......@@ -65,6 +65,7 @@ touch /var/log/etcd-events.log:
suffix: ""
port: 4001
server_port: 2380
cpulimit: '"200m"'
/etc/kubernetes/manifests/etcd-events.manifest:
file.managed:
......@@ -79,3 +80,4 @@ touch /var/log/etcd-events.log:
suffix: "-events"
port: 4002
server_port: 2381
cpulimit: '"100m"'
......@@ -112,7 +112,7 @@
"image": "gcr.io/google_containers/kube-apiserver:{{pillar['kube-apiserver_docker_tag']}}",
"resources": {
"limits": {
"cpu": "200m"
"cpu": "250m"
}
},
"command": [
......
......@@ -24,7 +24,7 @@
"image": "gcr.io/google_containers/kube-scheduler:{{pillar['kube-scheduler_docker_tag']}}",
"resources": {
"limits": {
"cpu": "200m"
"cpu": "100m"
}
},
"command": [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment