-
Notifications
You must be signed in to change notification settings - Fork 3
/
inventory.yml
77 lines (64 loc) · 2.03 KB
/
inventory.yml
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
---
external:
hosts:
# The ip address (or hostname) of the host you want to install
#
${TARGET_SERVER_IP_ADDRESS_HERE}:
ansible_user: root # Required, we need to connect as root
# The password used to connect as the root account to the live system
ansible_ssh_pass: live
# The list of disks that you want to use for the root partition, as a
# path from /dev (e.g for /dev/sda, use 'sda')
#
# If you want a single disk, just pass a single entry in the array.
#
# Examples:
#
# # Simple one disk setup using /dev/sda
# root_disks: ["sda"]
#
# # Pair of disk as a mirror pool
# root_disks: ["sda", "sdb"]
#
root_disks: ["FILL ME UP"]
# The ZFS pool mode for the boot and root pool.
#
# If absent, assumes a single drive setup.
#
# Useful values could be: mirror,raidz1,raidz2
#
pool_mode:
# The password to use to encrypt for the root pool
zfs_pool_password: "FILL ME UP"
# The fully qualified domain name of your computer
#
fqdn: "FILL ME UP"
# The username for the user in the 'sudo' group
#
admin_username: "admin"
# The password the admin, generate one using `mkpasswd --method=sha-512`
#
admin_password:
# The ssh public key for the administrator.
#
# This will enable logging in remotely and deciphering the disks.
#
admin_public_key:
##
# Optional aditional configuration
##
# The network interface on which to configure connectivity
#
network_interface: enp1s0
# A proxy for downloading apt packages
#
apt_proxy_url:
# The port on which to export the dropbear for unlocking disks via ssh
#
dropbear_port: "4748"
# The password to use for mokutil management
#
# Defaults to the admin password.
# Use `mkpasswd --method=sha512` to generate one otherwise.
#
mokutil_password: "{{ admin_password }}"