forked from ocp-power-automation/ocp4-upi-kvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
var.tfvars
45 lines (37 loc) · 1.74 KB
/
var.tfvars
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
### Configure the Libvirt Host values
libvirt_uri = "qemu+tcp://localhost/system"
host_address = ""
images_path = "/home/libvirt/openshift-images"
### Configure the Nodes details
bastion_image = "http://remote_server/rhel-8.1-ppc64le-kvm.qcow2"
rhcos_image = "http://remote_server/rhcos-4.4.9-ppc64le-qemu.ppc64le.qcow2"
bastion = { memory = 8192, vcpu = 2 }
bootstrap = { memory = 8192, vcpu = 4, count = 1 }
master = { memory = 16384, vcpu = 4, count = 3 }
worker = { memory = 16384, vcpu = 4, count = 2 }
network_cidr = "192.168.88.0/24"
rhel_username = "root"
rhel_password = "123456"
public_key_file = "~/.ssh/id_rsa.pub"
private_key_file = "~/.ssh/id_rsa"
private_key = ""
public_key = ""
rhel_subscription_username = ""
rhel_subscription_password = ""
### OpenShift variables
openshift_install_tarball = "https://mirror.openshift.com/pub/openshift-v4/ppc64le/clients/ocp/stable-4.4/openshift-install-linux.tar.gz"
openshift_client_tarball = "https://mirror.openshift.com/pub/openshift-v4/ppc64le/clients/ocp/stable-4.4/openshift-client-linux.tar.gz"
#release_image_override = ""
pull_secret_file = "data/pull-secret.txt"
cluster_domain = "example.com"
cluster_id_prefix = "test"
dns_forwarders = "1.1.1.1; 9.9.9.9"
installer_log_level = "info"
ansible_extra_options = "-v"
#helpernode_tag = "fddbbc651153ef2966e5cb4d4167990b31c01ceb"
#install_playbook_tag = "fd018e391831d431a0828b58c7b25f7c5b0bb581"
storage_type = "nfs"
volume_size = "300" # Value in GB
#upgrade_image = ""
#upgrade_pause_time = "90"
#upgrade_delay_time = "600"