Skip to content

Commit 54e956a

Browse files
committed
rewrite central deploy playbook and ansible config for new structure
Signed-off-by: Markus Katharina Brechtel <[email protected]>
1 parent 0697282 commit 54e956a

File tree

4 files changed

+21
-6
lines changed

4 files changed

+21
-6
lines changed

ansible/ansible.cfg ansible.cfg

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[defaults]
2-
inventory = hosts.yaml
32
error_on_undefined_vars = false
43
timeout = 30
54
forks = 10

ansible/.gitignore

-2
This file was deleted.

ansible/deploy.yaml

-3
This file was deleted.

deploy.yaml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
- name: Deploy Ceph
3+
hosts: all
4+
order: shuffle
5+
gather_facts: true
6+
roles:
7+
- ceph
8+
9+
- name: Deploy OVN
10+
hosts: all
11+
order: shuffle
12+
gather_facts: true
13+
roles:
14+
- ovn
15+
16+
- name: Deploy incus
17+
hosts: all
18+
order: shuffle
19+
gather_facts: true
20+
roles:
21+
- incus

0 commit comments

Comments
 (0)