Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/subb98/vds
Configuring a new virtual machine with "Infrastructure as Code" approach
https://github.com/subb98/vds
Last synced: 7 days ago
JSON representation
Configuring a new virtual machine with "Infrastructure as Code" approach
- Host: GitHub
- URL: https://github.com/subb98/vds
- Owner: Subb98
- License: mit
- Created: 2023-03-05T12:07:16.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-03-05T12:11:03.000Z (almost 2 years ago)
- Last Synced: 2024-11-07T09:39:33.287Z (about 2 months ago)
- Language: Makefile
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VDS
Этот репозиторий содержит описание конфигурации VDS при помощи исходного кода (подход Infrastructure as Code). В частности, с использованием Ansible.## Примечание
Разработка плейбуков осуществлялась для узлов с дистрибутивом Debian 10.## Требования
- Установленный Ansible на Control node (хост, с которого будут запускаться команды для конфигурирования VDS, например, localhost), [см. инструкцию](https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html)
- Наличие VDS или виртуальной машины, для которой будут запускаться команды для конфигурирования
- Подключение по SSH к VDS или виртуальной машине## Пример конфигурации /etc/ansible/hosts
Настроенный /etc/ansible/hosts на Control node нужен для подключения к VDS или виртуальной машине, если файл inventory.yaml ещё не описан, [см. инструкцию](https://docs.ansible.com/ansible/latest/getting_started/index.html)```
[vds_prod]
fvds ansible_host=192.168.1.1# или так:
[vds_prod]
fvds ansible_host=example.com
```Проверка соединения:
```
ansible all -m ping
fvds | SUCCESS => {
"ansible_facts": {
"discovered_interpreter_python": "/usr/bin/python3"
},
"changed": false,
"ping": "pong"
}
```## Создание зашифрованного пароля для пользователя
```
apt update
apt install -y python3 python3-bcrypt
python3 -c 'import crypt,getpass;pw=getpass.getpass();print(crypt.crypt(pw) if (pw==getpass.getpass("Confirm: ")) else exit())'
```