leylines/leylines-ansible/playbook-setup.yml

115 lines
3.8 KiB
YAML
Raw Normal View History

2021-06-15 08:37:57 +00:00
---
- hosts: all
2021-06-15 09:46:27 +00:00
environment:
PATH: '/home/{{ ansible_user }}/.local/bin:{{ ansible_env.PATH }}'
LD_LIBRARY_PATH: '/home/{{ ansible_user }}/.local/lib:{{ ansible_env.get("LD_LIBRARY_PATH", "") }}'
2021-06-15 08:37:57 +00:00
vars:
python_version: 3.9.5
tasks:
2021-06-15 09:44:32 +00:00
- name: install system packages
2021-06-15 08:37:57 +00:00
become: yes
apt:
name: ["build-essential", "wget", "software-properties-common", "libnss3-dev", "zlib1g-dev",
"libgdbm-dev", "libncurses5-dev", "libssl-dev", "libffi-dev", "libreadline-dev",
"libsqlite3-dev", "libbz2-dev", "libopenblas-dev"]
state: present
update_cache: yes
2021-06-15 09:44:32 +00:00
- name: build and install python {{ python_version }}
2021-06-15 08:37:57 +00:00
register: pyinstall
changed_when: "'NO_COMPILE_NEEDED' not in pyinstall.stdout"
args:
executable: "/bin/bash"
shell: |
set -eo pipefail
existing_ver="$(python3 -c 'import sys;print(f"{sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}")')"
if [ "$existing_ver" == "{{ python_version }}" ]; then
echo "NO_COMPILE_NEEDED"
exit
fi
if [ ! -d $HOME/python ]; then
mkdir $HOME/python
fi
cd $HOME/python
wget -O python.tgz https://www.python.org/ftp/python/{{ python_version }}/Python-{{ python_version }}.tgz
tar xf python.tgz
cd Python-{{ python_version }}
# https://bugs.python.org/issue41346
sed -i 's/-j0 //' Makefile.pre.in
# Speed up LTO
sed -i -e "s|-flto |-flto=4 |g" configure configure.ac
export CFLAGS="-O3 -fno-semantic-interposition"
export LDFLAGS="-fno-semantic-interposition"
./configure --prefix=$HOME/.local/ \
--enable-shared \
--with-computed-gotos \
--enable-optimizations \
--with-lto \
--enable-ipv6 \
--with-dbmliborder=gdbm:ndbm \
--enable-loadable-sqlite-extensions \
--with-tzpath=/usr/share/zoneinfo
make -j$(nproc) EXTRA_CFLAGS="$CFLAGS"
make EXTRA_CFLAGS="$CFLAGS" install
2021-06-15 09:44:32 +00:00
- name: create dask dir
file:
path: /home/{{ ansible_user }}/dask
mode: 0755
state: directory
- name: install python packages
vars:
- base_packages:
- dask
- distributed
- blosc
- lz4
- worker_packages:
- numpy
- scipy
- pandas
- scikit-image
- matplotlib
- opt_einsum
- cloudpickle
- fsspec
- partd
- psutil
- sqlalchemy
- toolz
- xxhash
- scheduler_packages:
- bokeh
- jupyter-server-proxy
- python_packages: "{% if leylines_is_server %}{{ base_packages + scheduler_packages }}{% else %}{{ base_packages + worker_packages }}{% endif %}"
pip:
virtualenv: /home/{{ ansible_user }}/dask/dask-venv
virtualenv_command: python3.9 -m venv
state: latest
name: "{{ python_packages }}"
2021-06-15 08:37:57 +00:00
2021-06-15 09:44:32 +00:00
- name: install systemd user dir
2021-06-15 08:37:57 +00:00
file:
path: /home/{{ ansible_user }}/.config/systemd/user
mode: 0755
state: directory
2021-06-15 09:44:32 +00:00
- name: install systemd task
2021-06-15 08:37:57 +00:00
template:
mode: 0644
src: templates/leylines-{% if leylines_is_server == "yes" %}scheduler{% else %}worker{% endif %}.service
dest: /home/{{ ansible_user }}/.config/systemd/user
2021-06-15 09:44:32 +00:00
- name: enable linger
command: loginctl enable-linger
2021-06-15 09:46:27 +00:00
changed_when: true
2021-06-15 09:44:32 +00:00
- name: enable and start systemd task
2021-06-15 08:37:57 +00:00
systemd:
scope: user
daemon_reload: true
name: leylines-{% if leylines_is_server == "yes" %}scheduler{% else %}worker{% endif %}
enabled: yes
state: restarted