provisioning_vars.yml.example 4.6 KB

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