base_vars.yml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. # Copyright 2021 Dell Inc. or its subsidiaries. All Rights Reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. ---
  15. # Path to directory hosting ansible config file (ansible.cfg file)
  16. # Default value is /etc/ansible
  17. # This directory is on the host running ansible, if ansible is installed using dnf
  18. # If ansible is installed using pip, this path should be set
  19. ansible_conf_file_path: /etc/ansible
  20. # This variable is used to enable ethernet switch configuration
  21. # It accepts boolean values "true" or "false".
  22. # By default its value is "false".
  23. # If ethernet switch support is needed set this to "true"
  24. ethernet_switch_support: true
  25. # This variable is used to enable infiniband switch configuration
  26. # It accepts boolean values "true" or "false".
  27. # By default its value is "false".
  28. # If infiniband configuration is needed set this to "true"
  29. ib_switch_support: true
  30. # This variable is used to enable powervault configuration
  31. # It accepts boolean values "true" or "false".
  32. # By default its value is "false".
  33. # If powervault configuration is needed set this to "true"
  34. powervault_support: false
  35. # The nic/ethernet card that will be connected to the public internet.
  36. # Default value of nic is eno2
  37. public_nic: "eno2"
  38. # Kubernetes pod network CIDR for appliance k8s network
  39. # Make sure this value does not overlap with any of the host networks.
  40. # Default value is "192.168.0.0/16"
  41. appliance_k8s_pod_net_cidr: "192.168.0.0/16"
  42. ### Usage: provision_idrac, network_ib, network_ethernet, powervault_me4 ###
  43. # The trap destination IP address is the IP address of the SNMP Server where the trap will be sent
  44. # If this variable is left blank, it means SNMP will be disabled
  45. # Provide a valid SNMP server IP
  46. snmp_trap_destination: ""
  47. # Provide the snmp community name needed
  48. # By default this is set to "public"
  49. snmp_community_name: "public"
  50. ### Usage: webui_awx ###
  51. # Organization name that is created in AWX.
  52. # The default value is “DellEMC”
  53. awx_organization: "DellEMC"
  54. ### Usage: provision_cobbler, provision_idrac ###
  55. # This variable is used to set node provisioning method
  56. # It accepts values: idrac, pxe
  57. # Default value is "idrac"
  58. # If provisioning needs to be done through cobbler, set it to "pxe"
  59. # If idrac license is not present, provisioning mode will be set to "pxe"
  60. provision_method: "idrac"
  61. # This is the timezone that will be set during provisioning of OS
  62. # Available timezones are provided in control_plane/common/files/timezone.txt
  63. # Default timezone will be "GMT"
  64. # Some of the other available timezones are EST,CET,MST,CST6CDT,PST8PDT
  65. timezone: "GMT"
  66. # This is the language that will be set during provisioning of the OS
  67. # Default language supported is "en-US"
  68. language: "en-US"
  69. # This is the path where the user has to place the iso image that needs to be provisioned in target nodes.
  70. # The iso file should be CentOS7-2009-minimal edition.
  71. # Other iso files are not supported.
  72. # Mandatory value required
  73. iso_file_path: "/root/CentOS-7-x86_64-Minimal-2009.iso"
  74. # Default lease time that will be used by dhcp
  75. # Its unit is seconds
  76. # Min: 21600 seconds
  77. # Default: 86400 seconds
  78. # Max: 31536000 seconds
  79. # Mandatory value required
  80. default_lease_time: "86400"
  81. ### Usage: control_plane_device ###
  82. # The nic/ethernet card that needs to be connected to provision
  83. # the fabric, idrac and powervault.
  84. # This nic will be configured by Omnia for the DHCP server.
  85. # Default value of nic is eno1
  86. mngmnt_network_nic: "eno1"
  87. # The dhcp range for assigning the IPv4 address
  88. # Example: 172.17.0.1
  89. # Mandatory value required
  90. mngmnt_network_dhcp_start_range: "172.19.0.101"
  91. mngmnt_network_dhcp_end_range: "172.19.0.200"
  92. # The mapping file consists of the MAC address and its respective IP address and Hostname.
  93. # The format of mapping file should be MAC,Hostname,IP and must be a CSV file.
  94. # Eg: xx:yy:zz:aa:bb,172.17.0.5
  95. # A template for mapping file exists in omnia/examples and is named as mapping_device_file.csv.
  96. # This depicts the path where user has kept the mapping file for DHCP configurations.
  97. mngmnt_mapping_file_path: ""
  98. ### Usage: provision_cobbler ###
  99. # The nic/ethernet card that needs to be connected to provision the OS of bare metal servers
  100. # This nic will be configured by Omnia for the DHCP server.
  101. # Default value of nic is eno3
  102. host_network_nic: "eno3"
  103. # The dhcp range for assigning the IPv4 address
  104. # Example: 172.17.0.1
  105. # Mandatory value required
  106. host_network_dhcp_start_range: "172.17.0.101"
  107. host_network_dhcp_end_range: "172.17.0.200"
  108. # The mapping file consists of the MAC address and its respective IP address and Hostname.
  109. # The format of mapping file should be MAC,Hostname,IP and must be a CSV file.
  110. # Eg: xx:yy:zz:aa:bb,server,172.17.0.5,Group(if any)
  111. # A template for mapping file exists in omnia/examples and is named as mapping_host_file.csv.
  112. # This depicts the path where user has kept the mapping file for DHCP configurations.
  113. host_mapping_file_path: ""
  114. ### Usage: control_plane_ib ###
  115. # The nic/ethernet card that needs to be connected to configure infiniband switch
  116. # This nic will be configured by Omnia for the DHCP server.
  117. # Default value of nic is ib0
  118. ib_network_nic: "ib0"
  119. # The dhcp range for assigning the IPv4 address
  120. # Example: 172.17.0.1
  121. ib_network_dhcp_start_range: "172.25.0.101"
  122. ib_network_dhcp_end_range: "172.25.0.200"