forked from redhat-cop/agnosticd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample_vars_osp.yml
59 lines (44 loc) · 1.8 KB
/
sample_vars_osp.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
---
# sample vars configuration file
#
# This file is passed to ansible-playbook to set key vars which need to be set
# and typically customized for a sucessful deployment.
#
# Usage: ansible-playbook main.yml -e @configs/three-tier-app/sample_vars.yml
#
# Ideally make and keep a copy OUTSIDE your repo, especially if using Cloud Credentials
# Credentials can also be set seperately i.e. ~/secrets.yml and passed in with
# a 2nd `-e` argument i.e. -e ~/secrets.yml
env_type: three-tier-app # Name of config to deploy
output_dir: /tmp/output_dir # Writable working scratch directory
email: [email protected] # User info for notifications
guid: guid01 # Your Global UNIQUE Identifier
repo_method: file
own_repo_path: http://admin.example.com/repos/version
ansible_user: cloud-user
remote_user: cloud-user
# Cloud specfic settings - example given here for OSP
cloud_provider: osp # Which AgnosticD Cloud Provider to use
# The domain that you want to add DNS entries to
osp_cluster_dns_zone: blue.osp.opentlc.com
# The dynamic DNS server you will add entries to.
# NOTE: This is only applicable when {{ use_dynamic_dns}} is true
osp_cluster_dns_server: ddns01.opentlc.com
# Instance type
bastion_instance_type: 2c2g30d
app_instance_type: 2c2g30d
appdb_instance_type: 2c2g30d
frontend_instance_type: 2c2g30d
support_instance_type: 2c2g30d
#___image: rhel-guest-7.7u2 # blue
___image: rhel-server-7.7-update-2 # red
bastion_instance_image: "{{ ___image }}"
app_instance_image: "{{ ___image }}"
appdb_instance_image: "{{ ___image }}"
frontend_instance_image: "{{ ___image }}"
support_instance_image: "{{ ___image }}"
student_name: gucore
#admin_user: opentlc-mgr
admin_user: gucore
update_all_packages: false
osp_project_create: true