Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#1136 from adidenko/fix-calico-poli…
Browse files Browse the repository at this point in the history
…cy-order

Move calico-policy-controller into separate role
  • Loading branch information
mattymo authored Mar 17, 2017
2 parents 7e1fbfb + 3a39904 commit 25bff85
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 22 deletions.
1 change: 1 addition & 0 deletions cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
- { role: kargo-defaults}
- { role: kubernetes/master, tags: master }
- { role: kubernetes-apps/network_plugin, tags: network }
- { role: kubernetes-apps/policy_controller, tags: policy-controller }

- hosts: calico-rr
any_errors_fatal: true
Expand Down
3 changes: 3 additions & 0 deletions inventory/group_vars/k8s-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ kube_users:
# Can also be set to 'cloud', which lets the cloud provider setup appropriate routing
kube_network_plugin: calico

# Enable kubernetes network policies
enable_network_policy: false

# Kubernetes internal network for services, unused block of space.
kube_service_addresses: 10.233.0.0/18

Expand Down
7 changes: 0 additions & 7 deletions roles/kubernetes-apps/ansible/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ kubednsmasq_image_tag: "{{ kubednsmasq_version }}"
exechealthz_image_repo: "gcr.io/google_containers/exechealthz-amd64"
exechealthz_image_tag: "{{ exechealthz_version }}"

# Limits for calico apps
calico_policy_controller_cpu_limit: 100m
calico_policy_controller_memory_limit: 256M
calico_policy_controller_cpu_requests: 30m
calico_policy_controller_memory_requests: 64M

# Netchecker
deploy_netchecker: false
netchecker_port: 31081
Expand All @@ -45,5 +39,4 @@ netchecker_server_memory_requests: 64M

# SSL
etcd_cert_dir: "/etc/ssl/etcd/ssl"
calico_cert_dir: "/etc/calico/certs"
canal_cert_dir: "/etc/canal/certs"
5 changes: 0 additions & 5 deletions roles/kubernetes-apps/ansible/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@
when: dns_mode != 'none' and inventory_hostname == groups['kube-master'][0]
tags: dnsmasq

- include: tasks/calico-policy-controller.yml
when: ( enable_network_policy is defined and enable_network_policy == True ) or
( kube_network_plugin == 'canal' )
tags: [network, canal]

- name: Kubernetes Apps | Netchecker
include: tasks/netchecker.yml
when: deploy_netchecker
Expand Down
5 changes: 0 additions & 5 deletions roles/kubernetes-apps/meta/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
dependencies:
- role: download
file: "{{ downloads.calico_policy }}"
when: ( enable_network_policy is defined and enable_network_policy == True ) or
( kube_network_plugin == 'canal' )
tags: [download, network, canal]
- role: download
file: "{{ downloads.netcheck_server }}"
when: deploy_netchecker
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Limits for calico apps
calico_policy_controller_cpu_limit: 100m
calico_policy_controller_memory_limit: 256M
calico_policy_controller_cpu_requests: 30m
calico_policy_controller_memory_requests: 64M

# SSL
calico_cert_dir: "/etc/calico/certs"
canal_cert_dir: "/etc/canal/certs"
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
- set_fact:
calico_cert_dir: "{{ canal_cert_dir }}"
when: kube_network_plugin == 'canal'
tags: facts
tags: [facts, canal]

- name: Write calico-policy-controller yaml
template:
src: calico-policy-controller.yml.j2
dest: "{{kube_config_dir}}/calico-policy-controller.yml"
when: inventory_hostname == groups['kube-master'][0]
tags: canal

- name: Start of Calico policy controller
kube:
Expand All @@ -18,3 +18,4 @@
namespace: "{{system_namespace}}"
resource: "rs"
when: inventory_hostname == groups['kube-master'][0]
tags: canal
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ spec:
# changed so long as it is used in conjunction with
# CONFIGURE_ETC_HOSTS="true".
- name: K8S_API
value: "https://kubernetes.default:{{ kube_apiserver_port }}"
value: "https://kubernetes.default"
# Configure /etc/hosts within the container to resolve
# the kubernetes.default Service to the correct clusterIP
# using the environment provided by the kubelet.
Expand Down
14 changes: 14 additions & 0 deletions roles/kubernetes-apps/policy_controller/meta/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
dependencies:
- role: download
file: "{{ downloads.calico_policy }}"
when: enable_network_policy and
kube_network_plugin in ['calico', 'canal']
tags: [download, canal, policy-controller]
- role: policy_controller/calico
when: kube_network_plugin == 'calico' and
enable_network_policy
tags: policy-controller
- role: policy_controller/calico
when: kube_network_plugin == 'canal'
tags: policy-controller
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec:
- --runtime-config={{ conf }}
{% endfor %}
{% endif %}
{% if enable_network_policy is defined and enable_network_policy == True %}
{% if enable_network_policy %}
- --runtime-config=extensions/v1beta1/networkpolicies=true
{% endif %}
- --v={{ kube_log_level }}
Expand Down
2 changes: 1 addition & 1 deletion roles/network_plugin/calico/templates/cni-calico.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"ipam": {
"type": "calico-ipam"
},
{% if enable_network_policy is defined and enable_network_policy == True %}
{% if enable_network_policy %}
"policy": {
"type": "k8s"
},
Expand Down

0 comments on commit 25bff85

Please sign in to comment.