opsta.host_preparation
Preparación del host
Rol de Ansible para preparar un host de Ubuntu.
- Configurar el nombre del host (opcional)
- Configurar apt-cacher-ng (opcional)
- Actualizar todos los paquetes, incluido el kernel a la última versión
- Instalar algunas herramientas (ver Variables del Rol)
- Ajustar el sistema (ver Variables del Rol)
- Configurar NTP
- Configurar usuario para que pueda usar sudo sin contraseña
- Configurar authorized_keys
Puedes ver un ejemplo de cómo crear un playbook, configuración y comandos de muestra aquí https://github.com/winggundamth/ansible-wing-playbook
Requisitos
Antes de usar este rol, prepara tu clave pública para authorized_keys y configura host_preparation_authorized_keys_path
para apuntar a tus archivos authorized_keys.
Variables del Rol
# Estas son las variables predeterminadas
host_preparation_reboot_timeout: 600
host_preparation_ntp_server: ntp.ubuntu.com
host_preparation_sshd_config: /etc/ssh/sshd_config
host_preparation_sshd_port: 22
host_preparation_group_authorized_keys_path: "{{ playbook_dir }}/files/groups/{{ group_names[-1] }}/authorized_keys"
host_preparation_global_authorized_keys_path: "{{ playbook_dir }}/files/authorized_keys"
host_preparation_base_packages:
- htop
- iotop
- sysstat
- iftop
host_preparation_is_config_hostname: false
host_preparation_is_tuning: false
host_preparation_sysctl_vars:
- { regexp: '^fs\.file-max \= ', line: 'fs.file-max = 1000000' }
- { regexp: '^net\.ipv4\.tcp_max_syn_backlog \= ', line: 'net.ipv4.tcp_max_syn_backlog = 65535' }
- { regexp: '^net\.ipv4\.tcp_tw_reuse \= ', line: 'net.ipv4.tcp_tw_reuse = 1' }
- { regexp: '^net\.ipv4\.tcp_tw_recycle \= ', line: 'net.ipv4.tcp_tw_recycle = 1' }
- { regexp: '^net\.ipv4\.ip_local_port_range \= ', line: 'net.ipv4.ip_local_port_range = 1024 65000' }
- { regexp: '^net\.ipv4\.tcp_max_tw_buckets \= ', line: 'net.ipv4.tcp_max_tw_buckets = 400000' }
- { regexp: '^net\.ipv4\.tcp_no_metrics_save \= ', line: 'net.ipv4.tcp_no_metrics_save = 1' }
- { regexp: '^net\.ipv4\.tcp_rmem \= ', line: 'net.ipv4.tcp_rmem = 4096 87380 16777216' }
- { regexp: '^net\.ipv4\.tcp_syn_retries \= ', line: 'net.ipv4.tcp_syn_retries = 2' }
- { regexp: '^net\.ipv4\.tcp_synack_retries \= ', line: 'net.ipv4.tcp_synack_retries = 2' }
- { regexp: '^net\.ipv4\.tcp_wmem \= ', line: 'net.ipv4.tcp_wmem = 4096 65536 16777216' }
- { regexp: '^net\.core\.somaxconn \= ', line: 'net.core.somaxconn = 65535' }
- { regexp: '^net\.core\.netdev_max_backlog \= ', line: 'net.core.netdev_max_backlog = 4096' }
- { regexp: '^net\.core\.rmem_max \= ', line: 'net.core.rmem_max = 16777216' }
- { regexp: '^net\.core\.wmem_max \= ', line: 'net.core.wmem_max = 16777216' }
- { regexp: '^net\.nf_conntrack_max \= ', line: 'net.nf_conntrack_max = 1048576' }
- { regexp: '^vm\.min_free_kbytes \= ', line: 'vm.min_free_kbytes = 65536' }
- { regexp: '^vm\.overcommit_memory \= ', line: 'vm.overcommit_memory = 1' }
- { regexp: '^vm\.swappiness \= ', line: 'vm.swappiness = 0' }
host_preparation_rc_vars:
- { regexp: '^echo never > /sys/kernel/mm/transparent_hugepage/enabled', line: 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' }
- { regexp: '^echo never > /sys/kernel/mm/transparent_hugepage/defrag', line: 'echo never > /sys/kernel/mm/transparent_hugepage/defrag' }
- { regexp: '^ip link set eth0 txqueuelen ', line: 'ip link set eth0 txqueuelen 5000' }
host_preparation_limits_vars:
- { regexp: '^\* soft nofile ', line: '* soft nofile 1000000' }
- { regexp: '^\* hard nofile ', line: '* hard nofile 1000000' }
- { regexp: '^\* soft nproc ', line: '* soft nproc 393216' }
- { regexp: '^\* hard nproc ', line: '* hard nproc 393216' }
# Estas son variables opcionales
host_preparation_apt_cacher_ng: http://apt-cacher-ng.example.com:3142
Dependencias
Ninguna
Ejemplo de Playbook
Dado que Ubuntu Xenial no incluía Python 2 por defecto, el playbook necesita instalar Python 2 primero sin recopilar hechos.
- hosts: all
gather_facts: no
become: true
pre_tasks:
- name: Instalar Python 2 primero
raw: python --version || apt update && apt install -y python
roles:
- winggundamth.host_preparation
vars_files:
- "{{ host_preparation_vars_file }}"
Lista de etiquetas útiles
Hay algunas etiquetas útiles que puedes usar para mantener tu host de Ubuntu.
- host-preparation-apt-cacher-ng
- host-preparation-configure-hostname
- host-preparation-configure-ntp
- host-preparation-install-base-packages
- host-preparation-update-packages
- host-preparation-tuning
- host-preparation-configure-authorized_keys
- host-preparation-configure-user
- host-preparation-reboot (esto necesita configurar la variable
host_preparation_need_reboot
a true)
Puedes especificar una etiqueta usando --tag
por ejemplo, si solo deseas configurar authorized_keys y limitarlo solo al grupo de servidores de producción y base de datos. Puedes ejecutar el siguiente comando
ansible-playbook -i inventories/host_preparation --limit production:database \
--tag host-preparation-configure-authorized_keys host-preparation.yml
Licencia
MIT
Información del Autor
Puedes ver mis trabajos en https://github.com/winggundamth
Ansible role to prepare Ubuntu host.
ansible-galaxy install opsta.host_preparation