envmgr
is a tool for quick deployment to install and configure tools with ansible.
Envmgr requires Python 3.8 or later and the rye package.
Please install rye
first 【rye installation】.
# Install rye
curl -sSf https://rye.astral.sh/get | RYE_INSTALL_OPTION="--yes" bash
# Setup envmgr
rye run setup
Host messages has been saved in inventory/default.yaml
.
master
group is for all and worker
group is for kubernetes worker nodes.
all:
children:
node:
children:
master:
hosts: master1 # Change host here
worker:
hosts: worker[1:2] # Change host here
Setup specified tools using role-level or task-level tags:
# List all available tags (both role-level and task-level)
rye run install -l
# Install specified tools
rye run install [tag1 tag2 ...]
# Install all roles
rye run install all
# Examples:
rye run install zsh # Install zsh (role-level)
rye run install github_cli # Install GitHub CLI (task-level)
rye run install init,github_cli # Install multiple components
Role-level tags install complete functional modules:
- zsh
- node (default version: 16.15.1)
- golang (default version: 1.20.4)
- ruby (default version: 3.0.5)
- docker
- minikube (latest)
- kubeadm,kubelet (1.23.3-00)
- kubernetes_tools
- cloud
- init
- monitoring
Task-level tags execute specific configuration tasks:
- github_cli (install GitHub CLI)
- git (configure git)
- sync_time (synchronize system time)
You can use rye run install -l
to see the complete list of available tags.
Supported Setup Items:
- zsh
- node (default version: 16.15.1)
- golang (default version: 1.20.4)
- ruby (default version: 3.0.5)
- docker
- minikube (latest)
- kubeadm,kubelet (1.23.3-00)
- kubenetes tools:
- kubectl (default version: 1.31)
- helm
- cloud
- awscli
Test connection
rye run ping
Create a new role
rye run create [role]
【rye】
【 rvm.ruby 】