Merge pull request #44 from ansibl8s/travis

Travis  tests
This commit is contained in:
Antoine Legrand 2016-01-07 23:46:02 +01:00
commit 7913d62749
9 changed files with 157 additions and 44 deletions

41
.travis.yml Normal file
View file

@ -0,0 +1,41 @@
sudo: required
dist: trusty
language: python
python: "2.7"
addons:
hosts:
- node1
env:
- SITE=cluster.yml
before_install:
- sudo apt-get update -qq
install:
# Install Ansible.
- sudo -H pip install ansible
- sudo -H pip install netaddr
cache:
directories:
- $HOME/releases
- $HOME/.cache/pip
before_script:
- export PATH=$PATH:/usr/local/bin
script:
# Check the role/playbook's syntax.
- "sudo -H ansible-playbook -i inventory/local-tests.cfg $SITE --syntax-check"
# Run the role/playbook with ansible-playbook.
- "sudo -H ansible-playbook -i inventory/local-tests.cfg $SITE --connection=local"
# Run the role/playbook again, checking to make sure it's idempotent.
- >
sudo -H ansible-playbook -i inventory/local-tests.cfg $SITE --connection=local
| tee /dev/stderr | grep -q 'changed=0.*failed=0'
&& (echo 'Idempotence test: pass' && exit 0)
|| (echo 'Idempotence test: fail' && exit 1)

17
inventory/local-tests.cfg Normal file
View file

@ -0,0 +1,17 @@
node1 ansible_connection=local local_release_dir={{ansible_env.HOME}}/releases
[downloader]
node1
[kube-master]
node1
[etcd]
node1
[kube-node]
node1
[k8s-cluster:children]
kube-node
kube-master

View file

@ -53,11 +53,37 @@
timeout: 100 timeout: 100
when: inventory_hostname in groups['kube-master'] when: inventory_hostname in groups['kube-master']
- name: update resolv.conf with new DNS setup - name: check resolvconf
template: stat: path=/etc/resolvconf/resolv.conf.d/head
src: resolv.conf.j2 register: resolvconf
dest: /etc/resolv.conf
mode: 644 - name: target resolv.conf file
set_fact:
resolvconffile: >
{%- if resolvconf.stat.exists == True -%}
/etc/resolvconf/resolv.conf.d/head
{%- else -%}
/etc/resolv.conf
{%- endif -%}
- name: Add search resolv.conf
lineinfile:
line: search {{ [ 'default.svc.' + dns_domain, 'svc.' + dns_domain, dns_domain ] | join(' ') }}
dest: "{{resolvconffile}}"
state: present
insertafter: EOF
backup: yes
follow: yes
- name: Add all masters as nameserver
lineinfile:
line: nameserver {{ hostvars[item]['ansible_default_ipv4']['address'] }}
dest: "{{resolvconffile}}"
state: present
insertafter: EOF
backup: yes
follow: yes
with_items: groups['kube-master']
- name: disable resolv.conf modification by dhclient - name: disable resolv.conf modification by dhclient
copy: src=dhclient_nodnsupdate dest=/etc/dhcp/dhclient-enter-hooks.d/nodnsupdate mode=u+x backup=yes copy: src=dhclient_nodnsupdate dest=/etc/dhcp/dhclient-enter-hooks.d/nodnsupdate mode=u+x backup=yes
@ -67,4 +93,9 @@
copy: src=dhclient_nodnsupdate dest=/etc/dhcp/dhclient.d/nodnsupdate mode=u+x backup=yes copy: src=dhclient_nodnsupdate dest=/etc/dhcp/dhclient.d/nodnsupdate mode=u+x backup=yes
when: ansible_os_family == "RedHat" when: ansible_os_family == "RedHat"
- name: update resolvconf
command: resolvconf -u
changed_when: False
when: resolvconf.stat.exists == True
- meta: flush_handlers - meta: flush_handlers

View file

@ -1,9 +0,0 @@
; generated by ansible
search {{ [ 'default.svc.' + dns_domain, 'svc.' + dns_domain, dns_domain ] | join(' ') }}
{% if inventory_hostname in groups['kube-master'] %}
nameserver {{ ansible_default_ipv4.address }}
{% else %}
{% for host in groups['kube-master'] %}
nameserver {{ hostvars[host]['ansible_default_ipv4']['address'] }}
{% endfor %}
{% endif %}

View file

@ -5,11 +5,17 @@
dest: /etc/bash_completion.d/kubectl.sh dest: /etc/bash_completion.d/kubectl.sh
- name: Install kubectl binary - name: Install kubectl binary
copy: synchronize:
src={{ local_release_dir }}/kubernetes/bin/kubectl src: "{{ local_release_dir }}/kubernetes/bin/kubectl"
dest={{ bin_dir }} dest: "{{ bin_dir }}/kubectl"
owner=kube mode: pull
mode=0755 archive: no
checksum: yes
times: yes
delegate_to: "{{ groups['downloader'][0] }}"
- name: Perms kubectl binary
file: path={{ bin_dir }}/kubelet owner=kube mode=0755 state=file
- name: populate users for basic auth in API - name: populate users for basic auth in API
lineinfile: lineinfile:

View file

@ -1,36 +1,50 @@
--- ---
- name: Write kubelet systemd init file - debug: msg="{{init_system == "systemd"}}"
- debug: msg="{{init_system}}"
- name: install | Write kubelet systemd init file
template: src=kubelet.service.j2 dest=/etc/systemd/system/kubelet.service backup=yes template: src=kubelet.service.j2 dest=/etc/systemd/system/kubelet.service backup=yes
when: init_system == "systemd" when: init_system == "systemd"
notify: restart systemd-kubelet notify: restart systemd-kubelet
- name: Write kubelet initd script - name: install | Write kubelet initd script
template: src=deb-kubelet.initd.j2 dest=/etc/init.d/kubelet owner=root mode=755 backup=yes template: src=deb-kubelet.initd.j2 dest=/etc/init.d/kubelet owner=root mode=755 backup=yes
when: init_system == "sysvinit" and ansible_os_family == "Debian" when: init_system == "sysvinit" and ansible_os_family == "Debian"
notify: restart kubelet notify: restart kubelet
- name: Write kubelet initd script - name: install | Write kubelet initd script
template: src=rh-kubelet.initd.j2 dest=/etc/init.d/kubelet owner=root mode=755 backup=yes template: src=rh-kubelet.initd.j2 dest=/etc/init.d/kubelet owner=root mode=755 backup=yes
when: init_system == "sysvinit" and ansible_os_family == "RedHat" when: init_system == "sysvinit" and ansible_os_family == "RedHat"
notify: restart kubelet notify: restart kubelet
- name: Install kubelet binary - name: install | Install kubelet binary
copy: synchronize:
src={{ local_release_dir }}/kubernetes/bin/kubelet src: "{{ local_release_dir }}/kubernetes/bin/kubelet"
dest={{ bin_dir }} dest: "{{ bin_dir }}/kubelet"
owner=kube mode: pull
mode=0755 times: yes
archive: no
delegate_to: "{{ groups['downloader'][0] }}"
notify: notify:
- restart kubelet - restart kubelet
- name: Calico-plugin | Directory - name: install | Perms kubelet binary
file: path={{ bin_dir }}/kubelet owner=kube mode=0755 state=file
- name: install | Calico-plugin | Directory
file: path=/usr/libexec/kubernetes/kubelet-plugins/net/exec/calico/ state=directory file: path=/usr/libexec/kubernetes/kubelet-plugins/net/exec/calico/ state=directory
when: kube_network_plugin == "calico" when: kube_network_plugin == "calico"
- name: Calico-plugin | Binary - name: install | Calico-plugin | Binary
copy: synchronize:
src={{ local_release_dir }}/calico/bin/calico src: "{{ local_release_dir }}/calico/bin/calico"
dest=/usr/libexec/kubernetes/kubelet-plugins/net/exec/calico/calico dest: "/usr/libexec/kubernetes/kubelet-plugins/net/exec/calico/calico"
mode=0755 mode: "pull"
times: yes
archive: no
delegate_to: "{{ groups['downloader'][0] }}"
when: kube_network_plugin == "calico" when: kube_network_plugin == "calico"
notify: restart kubelet notify: restart kubelet
- name: install | Perms calico plugin binary
file: path=/usr/libexec/kubernetes/kubelet-plugins/net/exec/calico/calico owner=kube mode=0755 state=file

View file

@ -1,7 +1,8 @@
--- ---
- name: "Identify init system" - name: "Identify init system"
shell: > shell: >
if $(pgrep systemd > /dev/null); then $(pgrep systemd > /dev/null && systemctl status > /dev/null);
if [ $? -eq 0 ] ; then
echo systemd; echo systemd;
else else
echo sysvinit; echo sysvinit;

View file

@ -1,11 +1,18 @@
--- ---
- name: Calico | Install calicoctl bin - name: Calico | Install calicoctl bin
copy: synchronize:
src: "{{ local_release_dir }}/calico/bin/calicoctl" src: "{{ local_release_dir }}/calico/bin/calicoctl"
dest: "{{ bin_dir }}" dest: "{{ bin_dir }}/calicoctl"
mode: 0755 mode: pull
archive: no
times: yes
delegate_to: "{{ groups['downloader'][0] }}"
notify: restart calico-node notify: restart calico-node
- name: Calico | install calicoctl
file: path={{ bin_dir }}/calicoctl mode=0755 state=file
- name: Calico | Create calicoctl symlink (needed by kubelet) - name: Calico | Create calicoctl symlink (needed by kubelet)
file: file:
src: /usr/local/bin/calicoctl src: /usr/local/bin/calicoctl

View file

@ -3,14 +3,19 @@
user: name=flannel shell=/bin/nologin user: name=flannel shell=/bin/nologin
- name: Install flannel binaries - name: Install flannel binaries
copy: synchronize:
src={{ local_release_dir }}/flannel/bin/flanneld src: "{{ local_release_dir }}/flannel/bin/flanneld"
dest={{ bin_dir }} dest: "{{ bin_dir }}/flanneld"
owner=flannel mode: pull
mode=u+x archive: no
times: yes
delegate_to: "{{ groups['downloader'][0] }}"
notify: notify:
- restart flannel - restart flannel
- name: Perms flannel binary
file: path={{ bin_dir }}/flanneld owner=flannel mode=0755 state=file
- name: Write flannel.service systemd file - name: Write flannel.service systemd file
template: template:
src: flannel/systemd-flannel.service.j2 src: flannel/systemd-flannel.service.j2