Browse Source

Fixup for #2523:

- Rename template for /etc/cni/net.d/00-weave.conflist to 00-weave.conflist.j2
- Apply resources requests/limits to both container weave and weave-npc
pull/2538/head
Wong Hoi Sing Edison 6 years ago
parent
commit
848fc323db
3 changed files with 6 additions and 2 deletions
  1. 2
      roles/network_plugin/weave/tasks/main.yml
  2. 0
      roles/network_plugin/weave/templates/00-weave.conflist.j2
  3. 6
      roles/network_plugin/weave/templates/weave-net.yml.j2

2
roles/network_plugin/weave/tasks/main.yml

@ -4,7 +4,7 @@
- name: template weavenet conflist
template:
src: weavenet.conflist.j2
src: 00-weave.conflist.j2
dest: /etc/cni/net.d/00-weave.conflist
owner: kube

roles/network_plugin/weave/templates/weavenet.conflist.j2 → roles/network_plugin/weave/templates/00-weave.conflist.j2

6
roles/network_plugin/weave/templates/weave-net.yml.j2

@ -141,7 +141,11 @@ items:
initialDelaySeconds: 30
resources:
requests:
cpu: 10m
cpu: {{ weave_cpu_requests }}
memory: {{ weave_memory_requests }}
limits:
cpu: {{ weave_cpu_limits }}
memory: {{ weave_memory_limits }}
securityContext:
privileged: true
volumeMounts:

Loading…
Cancel
Save