-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsample_vars.yml
49 lines (44 loc) · 1.44 KB
/
sample_vars.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
---
### OpenStack Setting ###
openstack_user: admin
openstack_passwd: openstack ## update this to your OpenStack admin password
openstack_ip: <ip address> ## This should be your OpenStack controller IP
openstack_project: admin ## This is the project for your user
domain_name: ocp3.lab
dns_forwarders: [8.8.8.8, 8.8.4.4]
external_network: public
service_subnet_cidr: 192.168.8.0/24 ## Change this to match your network CIDR
router_id: <router id from 'openstack router list'>
image: centos7
ssh_user: centos
ssh_key_path: /root/openshift.pem ## The path to your openshift SSH key
ssh_key_name: openshift
stack_name: openshift-cluster
openstack_version: 13
contact: [email protected]
heat_template_path: /root/content-openshift-on-openstack/heat/openshift.yaml
### OpenShift Settings ###
openshift_version: 3.9
docker_version: 1.13.1
openshift_ha: false
registry_replicas: 1
openshift_user: student
openshift_passwd: openshift
### Red Hat Subscription ###
#rhn_username: <user>
#rhn_password: <password>
#rhn_pool: <pool>
### OpenStack Instance Count ###
master_count: 1
infra_count: 1
node_count: 1
### OpenStack Instance Group Policies ###
### Set to 'affinity' if only one compute node ###
master_server_group_policies: "['anti-affinity']"
infra_server_group_policies: "['anti-affinity']"
node_server_group_policies: "['anti-affinity']"
### OpenStack Instance Flavors ###
bastion_flavor: m1.small
master_flavor: m1.small
infra_flavor: m1.small
node_flavor: m1.medium