Advertisement
Guest User

Untitled

a guest
Aug 24th, 2018
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.32 KB | None | 0 0
  1. ---
  2.  
  3. # 'hosting_infrastructure' is used to drive the correct behavior based
  4. # on the hosting infrastructure, cloud provider, etc. Valid values are:
  5. # - 'openstack'
  6. # - 'aws'
  7. # - 'azure'
  8. # - 'gcp'
  9. hosting_infrastructure: openstack
  10.  
  11. # OpenStack Provisioning Variables
  12. # use the "-e" option to set "openstack_ssh_public_key"
  13. #openstack_ssh_public_key:
  14.  
  15. # Image name to be used with the instance provisioning
  16. openstack_default_image_name: "rhel-server-7.5-x86_64"
  17.  
  18. # Default instance flavor (i.e.: instance size) for the provisioned instances
  19. openstack_default_flavor: "etl1.large"
  20.  
  21. # Override the default above with specific flabors
  22. #openstack_master_flavor: "m1.xlarge"
  23. #openstack_lb_flavor: "m1.small"
  24. #openstack_etcd_flavor: "m1.large"
  25. #openstack_node_flavor: "m1.xlarge"
  26. #openstack_infra_flavor: "m1.xlargse"
  27.  
  28. # The name of the network providing external access for the OpenStack tenant
  29. openstack_external_network_name: "external"
  30.  
  31. # Subnet Prefix to be used within the OpenStack Tenant network
  32. openstack_subnet_prefix: 192.168.99
  33.  
  34. # Number of master instances to deploy.
  35. # This is a non-HA sample nventory so don't change this value
  36. openstack_num_masters: 1
  37.  
  38. # Number of instances to be used as compute/app nodes
  39. openstack_num_nodes: 2
  40.  
  41. # Number of instances to be used as infra nodes.
  42. # This is a non-HA sample inventory so don't change this value
  43. openstack_num_infra: 1
  44.  
  45. # Cluster Environment ID to uniquely identify the environment
  46. env_id: "esauer1"
  47.  
  48. # Change default ports to use standard 443
  49. openshift_master_api_port: 443
  50. openshift_master_console_port: 443
  51.  
  52. # DNS configurations
  53. # The 'dns_domain' will be used as the base domain for the deployment
  54. # The 'dns_nameservers' is a list of DNS resolvers the cluster should use
  55. # - Note that the resolvers need to be able to resolve the "private/internal" IPs of the hosts.
  56. # This is often the same IP as the 'server' listed for the 'private' nsupdate section below.
  57. dns_domain: "casl-contrib.osp.rht-labs.com"
  58. dns_nameservers:
  59. - 10.9.53.22
  60.  
  61. # Sample configuration for the use of DNS servers for name resolution
  62. # NOTE: The view names of `private` and `public` are REQUIRED as it indicates
  63. # the role each of these entries have.
  64. # Each view section can have multiple servers (i.e.: it's a list of servers)
  65. nsupdate_config:
  66. - view: "private"
  67. zone: 'casl-contrib.osp.rht-labs.com'
  68. server_list:
  69. - key_secret: 'nYcNpkGi9eYuha3SdivBYopHFABg46VBRjj+l1cIPIQ='
  70. key_algorithm: 'hmac-sha256'
  71. key_name: 'internal-casl-contrib.osp.rht-labs.com'
  72. server: '10.9.53.22'
  73. - view: "public"
  74. zone: 'casl-contrib.osp.rht-labs.com'
  75. server_list:
  76. - key_secret: 'aXf4BXuIRCWhVkOFz1wPsMr1BsZ811MnazxTG0HkUOM='
  77. key_algorithm: 'hmac-sha256'
  78. key_name: 'external-casl-contrib.osp.rht-labs.com'
  79. server: '10.9.53.20'
  80.  
  81. # Specify the version of docker to use
  82. #docker_version: "1.12.*"
  83.  
  84. # Docker Storage configuration variables
  85. docker_volume_size: "5"
  86. docker_storage_block_device: "/dev/vdb"
  87.  
  88.  
  89. # Cinder Registry Storage - example 1
  90. # - Auto provisioned Cinder registry storage variables
  91. # NOTE: the volume size must be specified in GiB, but WITHOUT the unit (i.e.: without "Gi")
  92. # Do NOT specify the `openshift_hosted_registry_storage_openstack_volumeID` variable for this scenario.
  93. openshift_hosted_registry_storage_kind: openstack
  94. #openshift_hosted_registry_storage_volume_size: 20
  95.  
  96. # Cinder Registry Storage - example 2
  97. # - User provided Cinder registry storage variables
  98. # To leverage an existing Cinder volume already created
  99. # in OpenStack use the following variables.
  100. #openshift_hosted_registry_storage_kind: openstack
  101. #openshift_hosted_registry_storage_access_modes: ['ReadWriteOnce']
  102. #openshift_hosted_registry_storage_openstack_filesystem: ext4
  103. #openshift_hosted_registry_storage_openstack_volumeID: 3a650b4f-c8c5-4e0a-8ca5-eaee11f16c57
  104. #openshift_hosted_registry_storage_volume_size: 20Gi
  105.  
  106.  
  107. # Subscription Management Details
  108. rhsm_register: True
  109. rhsm_repos:
  110. - "rhel-7-server-rpms"
  111. - "rhel-7-server-ose-3.10-rpms"
  112. - "rhel-7-server-extras-rpms"
  113. - "rhel-7-fast-datapath-rpms"
  114. - "rhel-7-server-ansible-2.4-rpms"
  115.  
  116. # Keep this to use Red Hat Satellite:
  117. rhsm_server_hostname: 'sat.casl.rht-labs.com'
  118. rhsm_org_id: 'CASL'
  119. rhsm_activationkey: 'casl-openshift'
  120.  
  121. # Uncomment the following to use RHSM username, password and optionally pool:
  122. #rhsm_username: "{{ lookup('env', 'RHSM_USER' )}}"
  123. #rhsm_password: "{{ lookup('env', 'RHSM_PASSWD' )}}"
  124. # leave commented out if you want to `--auto-attach` a pool
  125. #rhsm_pool: "{{ lookup('env', 'RHSM_POOL' )}}"
  126.  
  127. # WARNING: By default the tools will update RPMs during provisioning. If any packages are
  128. # updated, the host(s) will reboot to ensure the correct versions are in use. This may
  129. # NOT be desirable during an consecutive runs to just apply minor changes. If you would
  130. # like to avoid "surprise" reboots, make sure to uncomment the following variable.
  131. # Do NOTE that a reboot should most likely happen on initial install, so it's important
  132. # that this variable is commented out or set to `True` for initial runs.
  133. #update_cluster_hosts: False
  134.  
  135. # Uncomment the following `additional_list_of_packages_to_install` to list additional
  136. # packages/RPMs to install during install
  137. #additional_list_of_packages_to_install:
  138. # - rpm-1
  139. # - rpm-2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement