28 lines
770 B
YAML
28 lines
770 B
YAML
---
|
|
- name: Deploy Olimp Infrastructure
|
|
hosts: localhost
|
|
gather_facts: false
|
|
vars_files:
|
|
- vault.yml
|
|
|
|
tasks:
|
|
- name: Include gateway deployment
|
|
include_tasks: gateway-deploy.yml
|
|
tags: gateway
|
|
|
|
- name: Display deployment summary
|
|
debug:
|
|
msg: |
|
|
Olimp Infrastructure deployed successfully!
|
|
|
|
Gateway Services:
|
|
- Heimdall: http://192.168.1.221:45131
|
|
- NPM Admin: http://192.168.1.221:81
|
|
|
|
Next steps:
|
|
1. Configure NPM proxy hosts
|
|
2. Deploy database host (222)
|
|
3. Deploy media host (223)
|
|
when: >
|
|
'deploy_lxc' in ansible_run_tags or
|
|
'gateway_services' in ansible_run_tags |