From a47f2d611c230e73452513050f8cd33a01fe8477 Mon Sep 17 00:00:00 2001 From: Aleksandr Didenko Date: Thu, 5 Jan 2017 10:16:11 +0100 Subject: [PATCH] Fix etcd cert generation for calico-rr role "etcd_node_cert_data" variable is undefinded for "calico-rr" role. This patch adds "calico-rr" nodes to task where "etcd_node_cert_data" variable is registered. --- roles/etcd/tasks/gen_certs.yml | 9 +++++---- roles/network_plugin/calico/defaults/main.yml | 4 ---- roles/network_plugin/calico/rr/defaults/main.yml | 6 ++++++ 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/roles/etcd/tasks/gen_certs.yml b/roles/etcd/tasks/gen_certs.yml index be127e972..49ca33186 100644 --- a/roles/etcd/tasks/gen_certs.yml +++ b/roles/etcd/tasks/gen_certs.yml @@ -40,7 +40,7 @@ {{ m }} {% endif %} {% endfor %}" - - HOSTS: "{% for h in groups['k8s-cluster'] %} + - HOSTS: "{% for h in (groups['k8s-cluster'] + groups['calico-rr']|default([]))|unique %} {% if hostvars[h].sync_certs|default(false) %} {{ h }} {% endif %} @@ -65,7 +65,7 @@ 'member-{{ inventory_hostname }}-key.pem' ] all_node_certs: "['ca.pem', - {% for node in groups['k8s-cluster'] %} + {% for node in (groups['k8s-cluster'] + groups['calico-rr']|default([]))|unique %} 'node-{{ node }}.pem', 'node-{{ node }}-key.pem', {% endfor %}]" @@ -88,8 +88,9 @@ executable: /bin/bash register: etcd_node_cert_data delegate_to: "{{groups['etcd'][0]}}" - when: inventory_hostname in groups['k8s-cluster'] and sync_certs|default(false) and - inventory_hostname not in groups['etcd'] + when: (('calico-rr' in groups and inventory_hostname in groups['calico-rr']) or + inventory_hostname in groups['k8s-cluster']) and + sync_certs|default(false) and inventory_hostname not in groups['etcd'] notify: set etcd_secret_changed - name: Gen_certs | Copy certs on masters diff --git a/roles/network_plugin/calico/defaults/main.yml b/roles/network_plugin/calico/defaults/main.yml index 6718fdbc5..7681abc5c 100644 --- a/roles/network_plugin/calico/defaults/main.yml +++ b/roles/network_plugin/calico/defaults/main.yml @@ -21,10 +21,6 @@ global_as_num: "64512" # calico_mtu: 1500 # Limits for apps -calico_rr_memory_limit: 1000M -calico_rr_cpu_limit: 300m -calico_rr_memory_requests: 500M -calico_rr_cpu_requests: 150m calico_node_memory_limit: 500M calico_node_cpu_limit: 300m calico_node_memory_requests: 256M diff --git a/roles/network_plugin/calico/rr/defaults/main.yml b/roles/network_plugin/calico/rr/defaults/main.yml index 116b9cc8c..561114377 100644 --- a/roles/network_plugin/calico/rr/defaults/main.yml +++ b/roles/network_plugin/calico/rr/defaults/main.yml @@ -5,3 +5,9 @@ global_as_num: "64512" calico_cert_dir: /etc/calico/certs etcd_cert_dir: /etc/ssl/etcd/ssl + +# Limits for apps +calico_rr_memory_limit: 1000M +calico_rr_cpu_limit: 300m +calico_rr_memory_requests: 500M +calico_rr_cpu_requests: 150m