diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 22bec6b1ab9722391cf82c04802308d2373ff45a..e08b887d90a55260fa8aa22713da57bd41e20dcf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,6 +26,7 @@ variables: IDEMPOT_CHECK: "false" RESET_CHECK: "false" UPGRADE_TEST: "false" + MITOGEN_ENABLE: "false" ANSIBLE_LOG_LEVEL: "-vv" RECOVER_CONTROL_PLANE_TEST: "false" RECOVER_CONTROL_PLANE_TEST_GROUPS: "etcd[2:],kube-master[1:]" diff --git a/.gitlab-ci/packet.yml b/.gitlab-ci/packet.yml index 927c0aaa5b781a9dfbd0bd170522b6ef2f280c74..bb3b6feb8791c4e618a0ae07e20a3880e9fa5f8e 100644 --- a/.gitlab-ci/packet.yml +++ b/.gitlab-ci/packet.yml @@ -26,11 +26,15 @@ packet_centos7-flannel-containerd-addons-ha: extends: .packet stage: deploy-part2 when: on_success + variables: + MITOGEN_ENABLE: "true" packet_ubuntu18-crio: extends: .packet stage: deploy-part2 when: on_success + variables: + MITOGEN_ENABLE: "true" # ### MANUAL JOBS @@ -40,6 +44,7 @@ packet_centos7-weave-upgrade-ha: when: on_success variables: UPGRADE_TEST: basic + MITOGEN_ENABLE: "false" packet_ubuntu16-weave-sep: stage: deploy-part2 @@ -95,11 +100,14 @@ packet_debian9-calico-upgrade-once: when: on_success variables: UPGRADE_TEST: graceful + MITOGEN_ENABLE: "false" packet_debian10-containerd: stage: deploy-part2 extends: .packet when: on_success + variables: + MITOGEN_ENABLE: "true" packet_centos7-calico-ha: stage: deploy-part2 @@ -127,6 +135,8 @@ packet_fedora31-flannel: stage: deploy-part2 extends: .packet when: on_success + variables: + MITOGEN_ENABLE: "true" packet_centos7-kube-router: stage: deploy-part2 @@ -172,6 +182,7 @@ packet_debian9-calico-upgrade: when: on_success variables: UPGRADE_TEST: graceful + MITOGEN_ENABLE: "false" packet_ubuntu18-calico-ha-recover: stage: deploy-part3 diff --git a/cluster.yml b/cluster.yml index ca828206c8a9a7c070b26f71811b01939c1c3a94..bf93e1bb916985d8280b325d2af5bd41af6ca430 100644 --- a/cluster.yml +++ b/cluster.yml @@ -23,6 +23,7 @@ - { role: bastion-ssh-config, tags: ["localhost", "bastion"] } - hosts: k8s-cluster:etcd + strategy: linear any_errors_fatal: "{{ any_errors_fatal | default(true) }}" gather_facts: false roles: diff --git a/docs/ansible.md b/docs/ansible.md index 7dbab1e40f9b8534977ac7ce43345df2c887a3d4..dea73fe465ee2fc34e423f2525e695a64e9a5ca1 100644 --- a/docs/ansible.md +++ b/docs/ansible.md @@ -183,3 +183,7 @@ bastion ansible_host=x.x.x.x For more information about Ansible and bastion hosts, read [Running Ansible Through an SSH Bastion Host](https://blog.scottlowe.org/2015/12/24/running-ansible-through-ssh-bastion-host/) + +## Mitogen + +You can use [mitogen](mitogen.md) to speed up kubespray. diff --git a/docs/mitogen.md b/docs/mitogen.md new file mode 100644 index 0000000000000000000000000000000000000000..89b108a6c50b9f3918bd1663ad85b18635637c87 --- /dev/null +++ b/docs/mitogen.md @@ -0,0 +1,13 @@ +# Mitogen + +[Mitogen for Ansible](https://mitogen.networkgenomics.com/ansible_detailed.html) allow a 1.25x - 7x speedup and a CPU usage reduction of at least 2x, depending on network conditions, modules executed, and time already spent by targets on useful work. Mitogen cannot improve a module once it is executing, it can only ensure the module executes as quickly as possible. + +## Install + +```ShellSession +ansible-playbook mitogen.yml +``` + +## Limitation + +If you are experiencing problems, please see the [documentation](https://mitogen.networkgenomics.com/ansible_detailed.html#noteworthy-differences). diff --git a/mitogen.yaml b/mitogen.yml similarity index 71% rename from mitogen.yaml rename to mitogen.yml index d8d308794c462804808f53390414032b20ad9acf..7e8686a447eff13e4b994e1cd25e37163d4faf1b 100644 --- a/mitogen.yaml +++ b/mitogen.yml @@ -5,8 +5,8 @@ - hosts: localhost strategy: linear vars: - mitogen_version: master - mitogen_url: https://github.com/dw/mitogen/archive/{{ mitogen_version }}.zip + mitogen_version: 0.2.9 + mitogen_url: https://github.com/dw/mitogen/archive/v{{ mitogen_version }}.tar.gz ansible_connection: local tasks: - name: Create mitogen plugin dir @@ -21,15 +21,22 @@ - name: download mitogen release get_url: url: "{{ mitogen_url }}" - dest: "{{ playbook_dir }}/dist/mitogen_{{ mitogen_version }}.zip" + dest: "{{ playbook_dir }}/dist/mitogen_{{ mitogen_version }}.tar.gz" validate_certs: true - - name: extract zip + - name: extract archive unarchive: - src: "{{ playbook_dir }}/dist/mitogen_{{ mitogen_version }}.zip" + src: "{{ playbook_dir }}/dist/mitogen_{{ mitogen_version }}.tar.gz" dest: "{{ playbook_dir }}/dist/" - name: copy plugin synchronize: src: "{{ playbook_dir }}/dist/mitogen-{{ mitogen_version }}/" dest: "{{ playbook_dir }}/plugins/mitogen" + + - name: add strategy to ansible.cfg + ini_file: + path: ansible.cfg + section: defaults + option: strategy + value: mitogen_linear diff --git a/scale.yml b/scale.yml index 65fecae0e98a97210b25f4b8825cdfcff256aabd..b735a74137b9efd1a627d37e4bcbdf45b6183e11 100644 --- a/scale.yml +++ b/scale.yml @@ -24,6 +24,7 @@ - name: Bootstrap any new workers hosts: kube-node + strategy: linear any_errors_fatal: "{{ any_errors_fatal | default(true) }}" gather_facts: false roles: diff --git a/tests/scripts/testcases_run.sh b/tests/scripts/testcases_run.sh index 29fe77b1160dbce65ad27529c342371787e0e798..33ed66554d8c7a625eb5f9eaca1639fb4387a9ae 100755 --- a/tests/scripts/testcases_run.sh +++ b/tests/scripts/testcases_run.sh @@ -43,6 +43,13 @@ test "${UPGRADE_TEST}" != "false" && git fetch --all && git checkout "$KUBESPRAY # Checkout the CI vars file so it is available test "${UPGRADE_TEST}" != "false" && git checkout "${CI_BUILD_REF}" tests/files/${CI_JOB_NAME}.yml tests/testcases/*.yml +# Install mitogen ansible plugin +if [ "${MITOGEN_ENABLE}" = "true" ]; then + ansible-playbook ${ANSIBLE_LOG_LEVEL} mitogen.yml + export ANSIBLE_STRATEGY=mitogen_linear + export ANSIBLE_STRATEGY_PLUGINS=plugins/mitogen/ansible_mitogen/plugins/strategy +fi + # Create cluster ansible-playbook ${ANSIBLE_LOG_LEVEL} -e @${CI_TEST_VARS} -e local_release_dir=${PWD}/downloads --limit "all:!fake_hosts" cluster.yml diff --git a/upgrade-cluster.yml b/upgrade-cluster.yml index 70c3943fe362b7f2f0861a951e88172649cab360..d5108f202802d904a7c20c4ce0e8477b4d467d0c 100644 --- a/upgrade-cluster.yml +++ b/upgrade-cluster.yml @@ -23,6 +23,7 @@ - { role: bastion-ssh-config, tags: ["localhost", "bastion"] } - hosts: k8s-cluster:etcd:calico-rr + strategy: linear any_errors_fatal: "{{ any_errors_fatal | default(true) }}" gather_facts: false vars: