Guillaume Coré
2020-01-23 926a092587159ebcc816cbdbe39db71b1f5b702b
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
---
# 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: just-some-nodes-example          # Name of config to deploy
output_dir: /tmp/output_dir                # Writable working scratch directory
email: name@example.com                   # User info for notifications
 
#CHANGEME
guid: testgucore                            # Your Global UNIQUE Identifier
 
repo_method: file
 
#CHANGEME or put in the secret
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
 
#CHANGEME
#___image: rhel-guest-7.7u2    # blue
___image: rhel-server-7.7-update-2  # red
 
bastion_instance_image: "{{ ___image }}"
node_instance_image: "{{ ___image }}"
 
#CHANGEME
student_name: gucore
#admin_user: opentlc-mgr
#CHANGEME
admin_user: gucore
 
update_all_packages: false
 
osp_project_create: true