Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#142 from kubespray/use_ansible_ser…
Browse files Browse the repository at this point in the history
…vice_mgr

use ansible_service_mgr to detect init system
  • Loading branch information
ant31 committed Feb 13, 2016
2 parents 7fef64d + c0cf506 commit 60d6195
Show file tree
Hide file tree
Showing 17 changed files with 41 additions and 61 deletions.
2 changes: 1 addition & 1 deletion roles/etcd/handlers/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

- name: reload systemd
command: systemctl daemon-reload
when: init_system == "systemd"
when: ansible_service_mgr == "systemd"

- name: reload etcd
service:
Expand Down
4 changes: 2 additions & 2 deletions roles/etcd/tasks/configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
src: etcd.service.j2
dest: /lib/systemd/system/etcd.service
backup: yes
when: init_system == "systemd"
when: ansible_service_mgr == "systemd"
notify: restart etcd

- name: Configure | Write etcd initd script
Expand All @@ -13,7 +13,7 @@
dest: /etc/init.d/etcd
owner: root
mode: 0755
when: init_system == "sysvinit" and ansible_os_family == "Debian"
when: ansible_service_mgr in ["sysvinit","upstart"] and ansible_os_family == "Debian"
notify: restart etcd

- name: Configure | Create etcd config file
Expand Down
10 changes: 2 additions & 8 deletions roles/kubernetes/master/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
src: "kube-apiserver.service.j2"
dest: "/etc/systemd/system/kube-apiserver.service"
backup: yes
when: init_system == "systemd"
when: ansible_service_mgr == "systemd"
notify: restart kube-apiserver

- name: install | Write kube-apiserver initd script
Expand All @@ -28,7 +28,7 @@
owner: root
mode: 0755
backup: yes
when: init_system == "sysvinit" and ansible_os_family == "Debian"
when: ansible_service_mgr in ["sysvinit","upstart"] and ansible_os_family == "Debian"

- name: Write kube-apiserver config file
template:
Expand Down Expand Up @@ -91,9 +91,3 @@
name: kubelet
state: restarted
changed_when: false

- name: restart kube-apiserver
service:
name: kube-apiserver
state: restarted
when: secret_changed | default(false)
7 changes: 4 additions & 3 deletions roles/kubernetes/master/tasks/start.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,19 @@

- name: reload systemd
command: systemctl daemon-reload
when: init_system == "systemd" and restart_apimaster is defined and restart_apimaster == True
when: ansible_service_mgr == "systemd" and restart_apimaster is defined and restart_apimaster == True

- name: reload kube-apiserver
service:
name: kube-apiserver
state: restarted
enabled: yes
when: restart_apimaster is defined and restart_apimaster == True
when: ( restart_apimaster is defined and restart_apimaster == True) or
secret_changed | default(false)

- name: Enable apiserver
service:
name: kube-apiserver
enabled: yes
state: started
when: restart_apimaster is not defined or restart_apimaster == False
when: restart_apimaster is not defined or restart_apimaster == False
4 changes: 2 additions & 2 deletions roles/kubernetes/master/templates/kube-apiserver.j2
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# The following values are used to configure the kube-apiserver

{% if init_system == "sysvinit" %}
{% if ansible_service_mgr in ["sysvinit","upstart"] %}
# Logging directory
KUBE_LOGGING="--log-dir={{ kube_log_dir }} --logtostderr=true"
{% else %}
Expand Down Expand Up @@ -38,7 +38,7 @@ KUBE_TLS_CONFIG="--tls_cert_file={{ kube_cert_dir }}/apiserver.pem --tls_private
# Add you own!
KUBE_API_ARGS="--token_auth_file={{ kube_token_dir }}/known_tokens.csv --basic-auth-file={{ kube_users_dir }}/known_users.csv --service_account_key_file={{ kube_cert_dir }}/apiserver-key.pem"

{% if init_system == "sysvinit" %}
{% if ansible_service_mgr in ["sysvinit","upstart"] %}
DAEMON_ARGS="$KUBE_LOGGING $KUBE_LOG_LEVEL $KUBE_ALLOW_PRIV $KUBE_API_PORT $KUBE_SERVICE_ADDRESSES \
$KUBE_ETCD_SERVERS $KUBE_ADMISSION_CONTROL $KUBE_RUNTIME_CONFIG $KUBE_TLS_CONFIG $KUBE_API_ARGS"
{% endif %}
2 changes: 1 addition & 1 deletion roles/kubernetes/node/handlers/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
- name: reload systemd
command: systemctl daemon-reload
when: init_system == "systemd"
when: ansible_service_mgr == "systemd"

- name: restart kubelet
command: /bin/true
Expand Down
6 changes: 3 additions & 3 deletions roles/kubernetes/node/tasks/install.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
---
- name: install | Write kubelet systemd init file
template: src=kubelet.service.j2 dest=/etc/systemd/system/kubelet.service backup=yes
when: init_system == "systemd"
when: ansible_service_mgr == "systemd"
notify: restart kubelet

- name: install | Write kubelet initd script
template: src=deb-kubelet.initd.j2 dest=/etc/init.d/kubelet owner=root mode=0755 backup=yes
when: init_system == "sysvinit" and ansible_os_family == "Debian"
when: ansible_service_mgr in ["sysvinit","upstart"] and ansible_os_family == "Debian"
notify: restart kubelet

- name: install | Write kubelet initd script
template: src=rh-kubelet.initd.j2 dest=/etc/init.d/kubelet owner=root mode=0755 backup=yes
when: init_system == "sysvinit" and ansible_os_family == "RedHat"
when: ansible_service_mgr in ["sysvinit","upstart"] and ansible_os_family == "RedHat"
notify: restart kubelet

- name: install | Install kubelet binary
Expand Down
4 changes: 2 additions & 2 deletions roles/kubernetes/node/templates/kubelet.j2
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% if init_system == "sysvinit" %}
{% if ansible_service_mgr in ["sysvinit","upstart"] %}
# Logging directory
KUBE_LOGGING="--log-dir={{ kube_log_dir }} --logtostderr=true"
{% else %}
Expand Down Expand Up @@ -30,7 +30,7 @@ DOCKER_SOCKET="--docker-endpoint=unix:/var/run/weave/weave.sock"
{% endif %}
# Should this cluster be allowed to run privileged docker containers
KUBE_ALLOW_PRIV="--allow_privileged=true"
{% if init_system == "sysvinit" %}
{% if ansible_service_mgr in ["sysvinit","upstart"] %}
DAEMON_ARGS="$KUBE_LOGGING $KUBE_LOG_LEVEL $KUBE_ALLOW_PRIV $KUBELET_API_SERVER $KUBELET_ADDRESS \
$KUBELET_HOSTNAME $KUBELET_REGISTER_NODE $KUBELET_ARGS $DOCKER_SOCKET $KUBELET_ARGS $KUBELET_NETWORK_PLUGIN"
{% endif %}
33 changes: 9 additions & 24 deletions roles/kubernetes/preinstall/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,6 @@
paths:
- ../vars

- name: "Identify init system"
shell: >
$(pgrep systemd > /dev/null && systemctl status network.target > /dev/null);
if [ $? -eq 0 ] ; then
echo systemd;
else
echo sysvinit;
fi
always_run: True
register: init_system_output
changed_when: False
tags: always

- set_fact:
init_system: "{{ init_system_output.stdout }}"
always_run: True
tags: always

- name: Create kubernetes config directory
file:
path: "{{ kube_config_dir }}"
Expand All @@ -56,7 +38,7 @@
path: "{{ kube_log_dir }}"
state: directory
owner: kube
when: init_system == "sysvinit"
when: ansible_service_mgr in ["sysvinit","upstart"]

- name: Create cni directories
file:
Expand All @@ -77,23 +59,26 @@
when: ansible_pkg_mgr == 'yum'

- name: Install python-apt for Debian distribs
shell: apt-get install -y python-apt
command: apt-get install -y python-apt
when: ansible_os_family == "Debian"
changed_when: False

- name: Install python-dnf for latest RedHat versions
shell: dnf install -y python-dnf yum
command: dnf install -y python-dnf yum
when: ansible_distribution == "Fedora" and
ansible_distribution_major_version > 21
changed_when: False

- name: Install epel-release for RedHat and CentOS distribs
- name: Install epel-release on RHEL
command: rpm -ivh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
when: ansible_distribution == "RedHat"

- name: Install epel-release on CentOS
action:
module: "{{ ansible_pkg_mgr }}"
name: "epel-release"
state: latest
when: ansible_distribution == "RedHat" or
ansible_distribution == "CentOS"
when: ansible_distribution == "CentOS"

- name: Install packages requirements
action:
Expand Down
2 changes: 1 addition & 1 deletion roles/network_plugin/calico/handlers/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

- name : reload systemd
shell: systemctl daemon-reload
when: init_system == "systemd"
when: ansible_service_mgr == "systemd"

- name: reload calico-node
service:
Expand Down
10 changes: 5 additions & 5 deletions roles/network_plugin/calico/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
src: systemd-docker.service
dest: /lib/systemd/system/docker.service
notify: restart docker
when: init_system == "systemd"
when: ansible_service_mgr == "systemd"

- meta: flush_handlers

Expand Down Expand Up @@ -80,21 +80,21 @@

- name: Calico | Write /etc/network-environment
template: src=network-environment.j2 dest=/etc/network-environment
when: init_system == "sysvinit"
when: ansible_service_mgr in ["sysvinit","upstart"]

- name: Calico | Write calico-node systemd init file
template: src=calico-node.service.j2 dest=/etc/systemd/system/calico-node.service
when: init_system == "systemd"
when: ansible_service_mgr == "systemd"
notify: restart calico-node

- name: Calico | Write calico-node initd script
template: src=deb-calico.initd.j2 dest=/etc/init.d/calico-node owner=root mode=0755
when: init_system == "sysvinit" and ansible_os_family == "Debian"
when: ansible_service_mgr in ["sysvinit","upstart"] and ansible_os_family == "Debian"
notify: restart calico-node

- name: Calico | Write calico-node initd script
template: src=rh-calico.initd.j2 dest=/etc/init.d/calico-node owner=root mode=0755
when: init_system == "sysvinit" and ansible_os_family == "RedHat"
when: ansible_service_mgr in ["sysvinit","upstart"] and ansible_os_family == "RedHat"
notify: restart calico-node

- meta: flush_handlers
Expand Down
2 changes: 1 addition & 1 deletion roles/network_plugin/calico/templates/docker
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Deployed by Ansible
{% if init_system == "sysvinit" and kube_network_plugin == "flannel" and ansible_os_family == "Debian" %}
{% if ansible_service_mgr in ["sysvinit","upstart"] and kube_network_plugin == "flannel" and ansible_os_family == "Debian" %}
DOCKER_OPTS="--bip={{ flannel_subnet }} --mtu={{ flannel_mtu }}"
{% elif kube_network_plugin == "flannel" and ansible_os_family == "RedHat" %}
DOCKER_NETWORK_OPTIONS="--bip={{ flannel_subnet }} --mtu={{ flannel_mtu }}"
Expand Down
2 changes: 1 addition & 1 deletion roles/network_plugin/flannel/handlers/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

- name : reload systemd
shell: systemctl daemon-reload
when: init_system == "systemd"
when: ansible_service_mgr == "systemd"

- name: reload docker
service:
Expand Down
2 changes: 1 addition & 1 deletion roles/network_plugin/flannel/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@
src: systemd-docker.service
dest: /lib/systemd/system/docker.service
notify: restart docker
when: init_system == "systemd"
when: ansible_service_mgr == "systemd"

- meta: flush_handlers
2 changes: 1 addition & 1 deletion roles/network_plugin/flannel/templates/docker
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Deployed by Ansible
{% if init_system == "sysvinit" and kube_network_plugin == "flannel" and ansible_os_family == "Debian" %}
{% if ansible_service_mgr in ["sysvinit","upstart"] and kube_network_plugin == "flannel" and ansible_os_family == "Debian" %}
DOCKER_OPTS="--bip={{ flannel_subnet }} --mtu={{ flannel_mtu }}"
{% elif kube_network_plugin == "flannel" %}
OPTIONS="--bip={{ flannel_subnet }} --mtu={{ flannel_mtu }}"
Expand Down
2 changes: 1 addition & 1 deletion roles/network_plugin/weave/handlers/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

- name : reload systemd
shell: systemctl daemon-reload
when: init_system == "systemd"
when: ansible_service_mgr == "systemd"

- name: restart weave
command: /bin/true
Expand Down
8 changes: 4 additions & 4 deletions roles/network_plugin/weave/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
src: systemd-docker.service
dest: /lib/systemd/system/docker.service
notify: restart docker
when: init_system == "systemd"
when: ansible_service_mgr == "systemd"

- meta: flush_handlers

Expand All @@ -41,17 +41,17 @@

- name: Weave | Write weave systemd init file
template: src=weave.service.j2 dest=/etc/systemd/system/weave.service
when: init_system == "systemd"
when: ansible_service_mgr == "systemd"
notify: restart systemd-weave

- name: Weave | Write weaveproxy systemd init file
template: src=weaveproxy.service.j2 dest=/etc/systemd/system/weaveproxy.service
when: init_system == "systemd"
when: ansible_service_mgr == "systemd"
notify: restart systemd-weaveproxy

- name: Weave | Write weaveexpose systemd init file
template: src=weaveexpose.service.j2 dest=/etc/systemd/system/weaveexpose.service
when: init_system == "systemd"
when: ansible_service_mgr == "systemd"
notify: restart systemd-weaveexpose

- name: Weave | Enable weave
Expand Down

0 comments on commit 60d6195

Please sign in to comment.