26 lines
601 B
YAML
26 lines
601 B
YAML
---
|
|
ansible_become_password: "{{ vault_devgpu_become_password }}"
|
|
|
|
ansible_python_interpreter: /usr/bin/python3
|
|
|
|
# Shell configuration
|
|
# ansible_user (root) is configured by default
|
|
# Add additional users here if needed:
|
|
shell_additional_users:
|
|
- devuser01
|
|
- devuser02
|
|
- dev
|
|
|
|
# Data Science configuration (datascience role)
|
|
install_conda: true
|
|
conda_install_path: "/root/anaconda3"
|
|
install_jupyter: true
|
|
jupyter_port: 8888
|
|
jupyter_allow_remote: true
|
|
jupyter_bind_all_interfaces: true
|
|
|
|
# R configuration
|
|
install_r: true
|
|
|
|
# IDE/editor tooling is intentionally not managed by Ansible in this repo.
|