provisioning_vars.yml.example 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. # Name of the vpc. Needs to be set if using a pre-existing vpc.
  34. #openshift_aws_vpc_name: "{{ openshift_aws_clusterid }}"
  35. # Name of the subnet in the vpc to use. Needs to be set if using a pre-existing
  36. # vpc + subnet.
  37. #openshift_aws_subnet_name:
  38. # -------------- #
  39. # Security Group #
  40. # -------------- #
  41. # openshift_aws_create_security_groups defaults to true. If you wish to use
  42. # an existing security group, set this to false.
  43. #openshift_aws_create_security_groups: true
  44. # openshift_aws_build_ami_group is the name of the security group to build the
  45. # ami in. This defaults to the value of openshift_aws_clusterid.
  46. #openshift_aws_build_ami_group: "{{ openshift_aws_clusterid }}"
  47. # openshift_aws_launch_config_security_groups specifies the security groups to
  48. # apply to the launch config. The launch config security groups will be what
  49. # the cluster actually is deployed in.
  50. #openshift_aws_launch_config_security_groups: see roles/openshift_aws/defaults.yml
  51. # openshift_aws_node_security_groups are created when
  52. # openshift_aws_create_security_groups is set to true.
  53. #openshift_aws_node_security_groups: see roles/openshift_aws/defaults.yml
  54. # -------- #
  55. # ssh keys #
  56. # -------- #
  57. # Specify the key pair name here to connect to the provisioned instances. This
  58. # can be an existing key, or it can be one of the keys specified in
  59. # openshift_aws_users
  60. openshift_aws_ssh_key_name: # myuser_key
  61. # This will ensure these user and public keys are created.
  62. #openshift_aws_users:
  63. #- key_name: myuser_key
  64. # username: myuser
  65. # pub_key: |
  66. # ssh-rsa AAAA
  67. # When building the AMI, specify the user to ssh to the instance as.
  68. # openshift_aws_build_ami_ssh_user: root
  69. # --------- #
  70. # AMI Build #
  71. # --------- #
  72. # Variables in this section apply to building a node AMI for use in your
  73. # openshift cluster.
  74. # must specify a base_ami when building an AMI
  75. openshift_aws_base_ami: # ami-12345678
  76. # when creating an encrypted AMI please specify use_encryption
  77. #openshift_aws_ami_encrypt: False
  78. # -- #
  79. # S3 #
  80. # -- #
  81. # Create an s3 bucket.
  82. #openshift_aws_create_s3: True
  83. # --- #
  84. # ELB #
  85. # --- #
  86. # openshift_aws_elb_name will be the base-name of the ELBs.
  87. #openshift_aws_elb_name: "{{ openshift_aws_clusterid }}"
  88. # custom certificates are required for the ELB
  89. openshift_aws_iam_cert_path: # '/path/to/wildcard.<clusterid>.example.com.crt'
  90. openshift_aws_iam_key_path: # '/path/to/wildcard.<clusterid>.example.com.key'
  91. #openshift_aws_iam_cert_chain_path: '/path/to/cert.ca.crt'