provisioning_vars.yml.example 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. ---
  2. # Variables that are commented in this file are optional; uncommented variables
  3. # are mandatory.
  4. # Default values for each variable are provided, as applicable.
  5. # Example values for mandatory variables are provided as a comment at the end
  6. # of the line.
  7. # ------------------------ #
  8. # Common/Cluster Variables #
  9. # ------------------------ #
  10. # Variables in this section affect all areas of the cluster
  11. # Deployment type must be specified.
  12. openshift_deployment_type: # 'origin' or 'openshift-enterprise'
  13. # openshift_release must be specified. Use whatever version of openshift
  14. # that is supported by openshift-ansible that you wish.
  15. openshift_release: # v3.7
  16. # This will be dependent on the version provided by the yum repository
  17. openshift_pkg_version: # -3.7.0
  18. # specify a clusterid
  19. # This value is also used as the default value for many other components.
  20. #openshift_aws_clusterid: default
  21. # AWS region
  22. # This value will instruct the plays where all items should be created.
  23. # Multi-region deployments are not supported using these plays at this time.
  24. #openshift_aws_region: us-east-1
  25. #openshift_aws_create_launch_config: true
  26. #openshift_aws_create_scale_group: true
  27. # --- #
  28. # VPC #
  29. # --- #
  30. # openshift_aws_create_vpc defaults to true. If you don't wish to provision
  31. # a vpc, set this to false.
  32. #openshift_aws_create_vpc: true
  33. # when openshift_aws_create_vpc is true (the default), the VPC defined in
  34. # openshift_aws_vpc will be created
  35. #openshift_aws_vpc:
  36. # name: "{{ openshift_aws_vpc_name }}"
  37. # cidr: 172.31.0.0/16
  38. # subnets:
  39. # us-east-1:
  40. # - cidr: 172.31.48.0/20
  41. # az: "us-east-1c"
  42. # default_az: true
  43. # - cidr: 172.31.32.0/20
  44. # az: "us-east-1e"
  45. # - cidr: 172.31.16.0/20
  46. # az: "us-east-1a"
  47. # Name of the vpc. Needs to be set if using a pre-existing vpc.
  48. #openshift_aws_vpc_name: "{{ openshift_aws_clusterid }}"
  49. # Name of the subnet in the vpc to use. Needs to be set if using a pre-existing
  50. # vpc + subnet. Otherwise will use the subnet with 'default_az' set (see above
  51. # example VPC structure)
  52. #openshift_aws_subnet_az:
  53. # -------------- #
  54. # Security Group #
  55. # -------------- #
  56. # openshift_aws_create_security_groups defaults to true. If you wish to use
  57. # an existing security group, set this to false.
  58. #openshift_aws_create_security_groups: true
  59. # openshift_aws_build_ami_group is the name of the security group to build the
  60. # ami in. This defaults to the value of openshift_aws_clusterid.
  61. #openshift_aws_build_ami_group: "{{ openshift_aws_clusterid }}"
  62. # openshift_aws_launch_config_security_groups specifies the security groups to
  63. # apply to the launch config. The launch config security groups will be what
  64. # the cluster actually is deployed in.
  65. #openshift_aws_launch_config_security_groups: see roles/openshift_aws/defaults.yml
  66. # openshift_aws_node_security_groups are created when
  67. # openshift_aws_create_security_groups is set to true.
  68. #openshift_aws_node_security_groups: see roles/openshift_aws/defaults.yml
  69. # -------- #
  70. # ssh keys #
  71. # -------- #
  72. # Specify the key pair name here to connect to the provisioned instances. This
  73. # can be an existing key, or it can be one of the keys specified in
  74. # openshift_aws_users
  75. openshift_aws_ssh_key_name: # myuser_key
  76. # This will ensure these user and public keys are created.
  77. #openshift_aws_users:
  78. #- key_name: myuser_key
  79. # username: myuser
  80. # pub_key: |
  81. # ssh-rsa AAAA
  82. # When building the AMI, specify the user to ssh to the instance as.
  83. # openshift_aws_build_ami_ssh_user: root
  84. # --------- #
  85. # AMI Build #
  86. # --------- #
  87. # Variables in this section apply to building a node AMI for use in your
  88. # openshift cluster.
  89. # openshift-ansible will perform the container runtime storage setup when specified
  90. # The current storage setup with require a drive if using a separate storage device
  91. # for the container runtime.
  92. container_runtime_docker_storage_type: overlay2
  93. container_runtime_docker_storage_setup_device: /dev/xvdb
  94. # must specify a base_ami when building an AMI
  95. openshift_aws_base_ami: # ami-12345678
  96. # when creating an encrypted AMI please specify use_encryption
  97. #openshift_aws_ami_encrypt: False
  98. # -- #
  99. # S3 #
  100. # -- #
  101. # Create an s3 bucket.
  102. #openshift_aws_create_s3: True
  103. # --- #
  104. # ELB #
  105. # --- #
  106. # openshift_aws_elb_name will be the base-name of the ELBs.
  107. #openshift_aws_elb_name: "{{ openshift_aws_clusterid }}"
  108. # custom certificates are required for the ELB
  109. openshift_aws_iam_cert_path: # '/path/to/wildcard.<clusterid>.example.com.crt'
  110. openshift_aws_iam_cert_key_path: # '/path/to/wildcard.<clusterid>.example.com.key'
  111. openshift_aws_iam_cert_chain_path: # '/path/to/cert.ca.crt'