Merge pull request #958 from holser/fix_weave_cpu

Fix CPU out of scope for Weave-net
This commit is contained in:
Matthew Mosesohn 2017-02-02 16:05:47 +03:00 committed by GitHub
commit bdc65990e1
2 changed files with 7 additions and 7 deletions

View file

@ -8,17 +8,17 @@
namespace: "{{system_namespace}}"
state: "{{ item | ternary('latest','present') }}"
with_items: "{{ weave_manifest.changed }}"
delegate_to: "{{groups['kube-master'][0]}}"
- name: "Weave | wait for weave to become available"
uri:
url: http://127.0.0.1:6784/status
return_content: yes
run_once: true
register: weave_status
retries: 10
delay: "{{ retry_stagger | random + 3 }}"
until: weave_status.status == 200
- name: "Weave | check if weave is ready"
fail:
when: "'Status: ready' not in weave_status.content"
until: "{{ weave_status.status == 200 and
'Status: ready' in weave_status.content }}"
delegate_to: "{{groups['kube-master'][0]}}"

View file

@ -1,6 +1,6 @@
---
# Limits
weave_memory_limit: 500M
weave_cpu_limit: 300m
weave_cpu_limit: 30m
weave_memory_requests: 300M
weave_cpu_requests: 200m
weave_cpu_requests: 10m