ilia 579f0709ce Update Makefile and inventory configurations for improved task execution and organization
- Refactor Makefile to enhance command structure, including clearer descriptions and usage examples for targets related to development, inventory, and monitoring tasks.
- Update inventory files to ensure correct host configurations and user settings, including adjustments to ansible_user for specific hosts.
- Modify group_vars to streamline Tailscale configuration and ensure proper handling of authentication keys.

These changes improve the clarity and usability of the Makefile and inventory setup, facilitating smoother operations across the infrastructure.
2025-10-09 21:24:45 -04:00

21 lines
380 B
YAML

---
# Data Science role defaults
# Conda/Anaconda configuration
install_conda: false
conda_install_path: "{{ ansible_env.HOME }}/anaconda3"
# Jupyter Notebook configuration
install_jupyter: false
jupyter_port: 8888
jupyter_allow_remote: true
jupyter_bind_all_interfaces: true
# R language configuration
install_r: false
r_packages:
- r-base
- r-base-dev
- r-recommended