Skip to content

Commit

Permalink
Merge pull request #31 from rhuss/master
Browse files Browse the repository at this point in the history
fix: docker.service file
  • Loading branch information
rhuss authored Oct 12, 2017
2 parents ab45bf9 + 26255c6 commit 86de54b
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 7 deletions.
4 changes: 2 additions & 2 deletions roles/kubernetes/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
reset: false
overlay_network: weave
overlay_network: flannel
network:
service_subnet: 10.200.100.0/24
pod_subnet: 10.1.0.0/16
images:
flannel: quay.io/coreos/flannel:v0.7.0-arm
flannel: quay.io/coreos/flannel:v0.9.0-arm
weave: weaveworks/weave-kube:2.0.4
weave_npc: weaveworks/weave-npc:2.0.4
k8s:
Expand Down
29 changes: 27 additions & 2 deletions roles/kubernetes/tasks/cni/flannel.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,32 @@
- name: Create flannel resources
# Please note, this is still work in progress
# Especially saving of the iptables rules needs to be fixed

- name: flannel | Install iptables support package
apt:
name: iptables-persistent
force: yes
state: present

- name: flannel | Get iptables rules
shell: iptables -L
register: iptablesrules
check_mode: no

- name: flannel | Add flannel iptable rules (in)
command: /sbin/iptables -A FORWARD -i cni0 -j ACCEPT -m comment --comment "Flannel"
when: iptablesrules.stdout.find("Flannel") == -1

- name: flannel | Add flannel iptable rules (out)
command: /sbin/iptables -A FORWARD -o cni0 -j ACCEPT -m comment --comment "Flannel"
when: iptablesrules.stdout.find("Flannel") == -1

- name: flannel | Save iptables
command: service iptables-persistent save

- name: flannel | Create flannel resources
template: src=cni/flannel.yml dest=/etc/kubernetes/kube-flannel.yml

- name: Create flannel resources
- name: flannel | Create flannel resources
environment:
KUBECONFIG: /etc/kubernetes/admin.conf
command: kubectl create -f /etc/kubernetes/kube-flannel.yml
2 changes: 1 addition & 1 deletion roles/kubernetes/tasks/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
dockerd_extra_args: "{{ '-H tcp://' + inventory_hostname + ':2375' if docker.expose_tcp else '' }}"

- name: Update docker service startup
template: src=docker.service dest=/etc/systemd/system/docker.service
template: src=docker.service dest=/lib/systemd/system/docker.service
register: result
notify:
- restart docker
Expand Down
4 changes: 2 additions & 2 deletions roles/kubernetes/templates/docker.service
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[Unit]
Description=Docker Application Container Engine
Documentation=https://docs.docker.com
After=network.target docker.socket
After=network.target docker.socket firewalld.service
Requires=docker.socket

[Service]
Expand All @@ -14,11 +14,11 @@ Type=notify
# - make the cluster accessible from the outside
ExecStart=/usr/bin/dockerd -H fd:// {{ dockerd_extra_args }} -s {{ docker.storage_driver }}
ExecReload=/bin/kill -s HUP $MAINPID
LimitNOFILE=1048576
# Having non-zero Limit*s causes performance problems due to accounting overhead
# in the kernel. We recommend using cgroups to do container-local accounting.
LimitNPROC=infinity
LimitCORE=infinity
LimitNOFILE=infinity
# Uncomment TasksMax if your systemd version supports it.
# Only systemd 226 and above support this version.
#TasksMax=infinity
Expand Down

0 comments on commit 86de54b

Please sign in to comment.