-
Notifications
You must be signed in to change notification settings - Fork 14
/
sample-inventory
80 lines (71 loc) · 1.6 KB
/
sample-inventory
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#
# Kubernetes - Control Plane nodes
#
# This list is the FQDN/IP of the nodes used for the control plane
#
# NOTE: For HA/kube-vip to work you need at least 3 nodes
#
[k8s_control_plane]
FIXME - ENTER YOUR KUBERNETES CONTROL PLANE NODE IPs/FQDNs HERE!
#
# Kubernetes - Nodes
#
# This list is the FQDN/IP of the nodes used for the generic nodes
#
# NOTE: For HA to work you need at least 3 nodes
#
[k8s_node]
FIXME - ENTER YOUR KUBERNETES COMPUTE NODE IPs/FQDNs HERE!
#
# Kubernetes Nodes - alias - DO NOT MODIFY
#
[k8s:children]
k8s_control_plane
k8s_node
#
# Jump Server
#
[jump_server]
FIXME - ENTER YOUR JUMP SERVER IP/FQDN HERE!
#
# Jump Server - alias - DO NOT MODIFY
#
[jump:children]
jump_server
#
# NFS Server
#
[nfs_server]
FIXME - ENTER YOUR NFS SERVER IP/FQDN HERE!
#
# NFS Server - alias - DO NOT MODIFY
#
[nfs:children]
nfs_server
#
# Postgres Servers
#
# NOTE: You MUST have an entry for each postgres server
#
[<postgres_server_name>]
FIXME - ENTER YOUR POSTGRES SERVER IP/FQDN HERE!
[<postgres_server_name>:vars]
postgres_server_name="<postgres_server_name>"
postgres_server_version="<postgres_server_version>"
postgres_server_ssl="<postgres_server_ssl_enabled" # NOTE: Values - [on,off]
postgres_administrator_login="postgres" # NOTE: Do not change this value at this time
postgres_administrator_password="<postgres_server_administrator_password>"
postgres_system_setting_max_prepared_transactions="1024"
postgres_system_setting_max_connections="1024"
# NOTE: Add entries here for each postgres server listed above
[postgres:children]
<postgres_server_name>
#
# All systems
#
[all:children]
k8s
jump
nfs
cr
postgres