-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathhosts.yaml
More file actions
58 lines (58 loc) · 2.31 KB
/
hosts.yaml
File metadata and controls
58 lines (58 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
all:
hosts:
inference-control-plane-01:
ansible_host: "{{ private_ip }}"
ansible_user: "{{ ansible_user }}"
ansible_ssh_private_key_file: /path/to/your/ssh/key
inference-control-plane-02:
ansible_host: "{{ private_ip }}"
ansible_user: "{{ ansible_user }}"
ansible_ssh_private_key_file: /path/to/your/ssh/key
inference-control-plane-03:
ansible_host: "{{ private_ip }}"
ansible_user: "{{ ansible_user }}"
ansible_ssh_private_key_file: /path/to/your/ssh/key
inference-workload-node-01:
ansible_host: "{{ private_ip }}"
ansible_user: "{{ ansible_user }}"
ansible_ssh_private_key_file: /path/to/your/ssh/key
inference-workload-node-02:
ansible_host: "{{ private_ip }}"
ansible_user: "{{ ansible_user }}"
ansible_ssh_private_key_file: /path/to/your/ssh/key
inference-workload-node-03:
ansible_host: "{{ private_ip }}"
ansible_user: "{{ ansible_user }}"
ansible_ssh_private_key_file: /path/to/your/ssh/key
inference-workload-node-04:
ansible_host: "{{ private_ip }}"
ansible_user: "{{ ansible_user }}"
ansible_ssh_private_key_file: /path/to/your/ssh/key
inference-workload-node-05:
ansible_host: "{{ private_ip }}"
ansible_user: "{{ ansible_user }}"
ansible_ssh_private_key_file: /path/to/your/ssh/key
children:
kube_control_plane:
hosts:
inference-control-plane-01:
inference-control-plane-02:
inference-control-plane-03:
kube_node:
hosts:
inference-workload-node-01:
inference-workload-node-02:
inference-workload-node-03:
inference-workload-node-04:
inference-workload-node-05:
etcd:
hosts:
inference-control-plane-01:
inference-control-plane-02:
inference-control-plane-03:
k8s_cluster:
children:
kube_control_plane:
kube_node:
calico_rr:
hosts: {}