vars.yml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. ---
  2. clusterid: mycluster
  3. region: us-east-1
  4. provision:
  5. clusterid: "{{ clusterid }}"
  6. region: "{{ region }}"
  7. build: # build specific variables here
  8. ami_name: "openshift-gi-"
  9. base_image: ami-bdd5d6ab # base image for AMI to build from
  10. yum_repositories: # this is an example repository but it requires sslclient info
  11. - name: openshift-repo
  12. file: openshift-repo
  13. description: OpenShift Builds
  14. baseurl: https://mirror.openshift.com/enterprise/online-int/latest/x86_64/os/
  15. enabled: yes
  16. gpgcheck: no
  17. sslverify: no
  18. sslclientcert: "/var/lib/yum/client-cert.pem"
  19. sslclientkey: "/var/lib/yum/client-key.pem"
  20. gpgkey: "https://mirror.ops.rhcloud.com/libra/keys/RPM-GPG-KEY-redhat-release https://mirror.ops.rhcloud.com/libra/keys/RPM-GPG-KEY-redhat-beta https://mirror.ops.rhcloud.com/libra/keys/RPM-GPG-KEY-redhat-openshifthosted"
  21. # when creating an encrypted AMI please specify use_encryption
  22. use_encryption: False
  23. openshift_ami_tags:
  24. bootstrap: "true"
  25. openshift-created: "true"
  26. clusterid: "{{ clusterid }}"
  27. # Use s3 backed registry storage
  28. openshift_registry_s3: True
  29. # if using custom certificates these are required for the ELB
  30. iam_cert_ca:
  31. name: "{{ clusterid }}_openshift"
  32. cert_path: '/path/to/wildcard.<clusterid>.example.com.crt'
  33. key_path: '/path/to/wildcard.<clusterid>.example.com.key'
  34. chain_path: '/path/to/cert.ca.crt'
  35. instance_users:
  36. - key_name: myuser_key
  37. username: myuser
  38. pub_key: |
  39. ssh-rsa AAAA== myuser@system
  40. node_group_config:
  41. tags:
  42. clusterid: "{{ clusterid }}"
  43. environment: stg
  44. ssh_key_name: myuser_key
  45. # master specific cluster node settings
  46. master:
  47. instance_type: m4.xlarge
  48. ami: ami-cdeec8b6 # if using an encrypted AMI this will be replaced
  49. volumes:
  50. - device_name: /dev/sdb
  51. volume_size: 100
  52. device_type: gp2
  53. delete_on_termination: False
  54. health_check:
  55. period: 60
  56. type: EC2
  57. min_size: 3
  58. max_size: 3
  59. desired_size: 3
  60. tags:
  61. host-type: master
  62. sub-host-type: default
  63. wait_for_instances: True
  64. # compute specific cluster node settings
  65. compute:
  66. instance_type: m4.xlarge
  67. ami: ami-cdeec8b6
  68. volumes:
  69. - device_name: /dev/sdb
  70. volume_size: 100
  71. device_type: gp2
  72. delete_on_termination: True
  73. health_check:
  74. period: 60
  75. type: EC2
  76. min_size: 3
  77. max_size: 100
  78. desired_size: 3
  79. tags:
  80. host-type: node
  81. sub-host-type: compute
  82. # infra specific cluster node settings
  83. infra:
  84. instance_type: m4.xlarge
  85. ami: ami-cdeec8b6
  86. volumes:
  87. - device_name: /dev/sdb
  88. volume_size: 100
  89. device_type: gp2
  90. delete_on_termination: True
  91. health_check:
  92. period: 60
  93. type: EC2
  94. min_size: 2
  95. max_size: 20
  96. desired_size: 2
  97. tags:
  98. host-type: node
  99. sub-host-type: infra
  100. # vpc settings
  101. vpc:
  102. cidr: 172.31.0.0/16
  103. subnets:
  104. us-east-1: # These are us-east-1 region defaults. Ensure this matches your region
  105. - cidr: 172.31.48.0/20
  106. az: "us-east-1c"
  107. - cidr: 172.31.32.0/20
  108. az: "us-east-1e"
  109. - cidr: 172.31.16.0/20
  110. az: "us-east-1a"