base_vars.yml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. ##All variables except mapping_file_path are mandatory##
  16. ###default###
  17. # Path to directory hosting ansible config file (ansible.cfg file)
  18. # Default value is /etc/ansible
  19. # This directory is on the host running ansible, if ansible is installed using dnf
  20. # If ansible is installed using pip, this path should be set
  21. ansible_conf_file_path: /etc/ansible
  22. # This variable is used to enable ethernet switch configuration
  23. # It accepts boolean values "true" or "false".
  24. # By default its value is "false".
  25. # If ethernet switch support is needed set this to "true"
  26. ethernet_switch_support: false
  27. # This variable is used to enable infiniband switch configuration
  28. # It accepts boolean values "true" or "false".
  29. # By default its value is "false".
  30. # If infiniband configuration is needed set this to "true"
  31. ib_switch_support: false
  32. # This variable is used to enable powervault configuration
  33. # It accepts boolean values "true" or "false".
  34. # By default its value is "false".
  35. # If powervault configuration is needed set this to "true"
  36. powervault_support: false
  37. # The nic/ethernet card that will be connected to the public internet.
  38. # Default value of nic is eno2
  39. public_nic: "eno2"
  40. # Kubernetes pod network CIDR for appliance k8s network
  41. # Make sure this value does not overlap with any of the host networks.
  42. # Default value is "192.168.0.0/16"
  43. appliance_k8s_pod_net_cidr: "192.168.0.0/16"
  44. ### Usage: provision_idrac, network_ib, network_ethernet, powervault_me4 ###
  45. # The trap destination IP address is the IP address of the SNMP Server where the trap will be sent
  46. # If this variable is left blank, it means SNMP will be disabled
  47. # Provide a valid SNMP server IP
  48. snmp_trap_destination: ""
  49. # Provide the snmp community name needed
  50. # By default this is set to "public"
  51. snmp_community_name: "public"
  52. ### Usage: webui_awx ###
  53. # Organization name that is created in AWX.
  54. # The default value is “DellEMC”
  55. awx_organization: "DellEMC"
  56. ### Usage: provision_cobbler, provision_idrac ###
  57. # This variable is used to set node provisioning method
  58. # It accepts values: idrac, pxe
  59. # Default value is "idrac"
  60. # If provisioning needs to be done through cobbler, set it to "pxe"
  61. # If idrac license is not present, provisioning mode will be set to "pxe"
  62. provision_method: "idrac"
  63. # This is the timezone that will be set during provisioning of OS
  64. # Available timezones are provided in control_plane/common/files/timezone.txt
  65. # Default timezone will be "GMT"
  66. # Some of the other available timezones are EST,CET,MST,CST6CDT,PST8PDT
  67. timezone: "GMT"
  68. # This is the language that will be set during provisioning of the OS
  69. # Default language supported is "en-US"
  70. language: "en-US"
  71. # This is the path where the user has to place the iso image that needs to be provisioned in target nodes.
  72. # The iso file should be CentOS7-2009-minimal edition.
  73. # Other iso files are not supported.
  74. # Mandatory value required
  75. iso_file_path: ""
  76. ### Usage: control_plane_device ###
  77. # The nic/ethernet card that needs to be connected to provision
  78. # the fabric, idrac and powervault.
  79. # This nic will be configured by Omnia for the DHCP server.
  80. # Default value of nic is eno1
  81. mngmnt_network_nic: "eno1"
  82. # The dhcp range for assigning the IPv4 address
  83. # Example: 172.17.0.1
  84. # Mandatory value required
  85. mngmnt_network_dhcp_start_range: ""
  86. mngmnt_network_dhcp_end_range: ""
  87. # The mapping file consists of the MAC address and its respective IP address and hostname.
  88. # The format of mapping file should be MAC,hostname,IP and must be a CSV file.
  89. # Eg: xx:yy:zz:aa:bb,server,172.17.0.5
  90. # A template for mapping file exists in omnia/examples and is named as mapping_file.csv.
  91. # This depicts the path where user has kept the mapping file for DHCP configurations.
  92. mngmnt_mapping_file_path: ""
  93. ### Usage: provision_cobbler ###
  94. # The nic/ethernet card that needs to be connected to provision the OS of bare metal servers
  95. # This nic will be configured by Omnia for the DHCP server.
  96. # Default value of nic is eno3
  97. host_network_nic: "eno3"
  98. # The dhcp range for assigning the IPv4 address
  99. # Example: 172.17.0.1
  100. # Mandatory value required
  101. host_network_dhcp_start_range: ""
  102. host_network_dhcp_end_range: ""
  103. # The mapping file consists of the MAC address and its respective IP address and hostname.
  104. # The format of mapping file should be MAC,hostname,IP and must be a CSV file.
  105. # Eg: xx:yy:zz:aa:bb,server,172.17.0.5
  106. # A template for mapping file exists in omnia/examples and is named as mapping_file.csv.
  107. # This depicts the path where user has kept the mapping file for DHCP configurations.
  108. host_mapping_file_path: ""
  109. ### Usage: control_plane_ib ###
  110. # The nic/ethernet card that needs to be connected to configure infiniband switch
  111. # This nic will be configured by Omnia for the DHCP server.
  112. # Default value of nic is ib0
  113. ib_network_nic: "ib0"
  114. # The dhcp range for assigning the IPv4 address
  115. # Example: 172.17.0.1
  116. ib_network_dhcp_start_range: ""
  117. ib_network_dhcp_end_range: ""
  118. # The mapping file consists of the MAC address and its respective IP address and hostname.
  119. # The format of mapping file should be MAC,hostname,IP and must be a CSV file.
  120. # Eg: xx:yy:zz:aa:bb,server,172.17.0.5
  121. # A template for mapping file exists in omnia/examples and is named as mapping_file.csv.
  122. # This depicts the path where user has kept the mapping file for DHCP configurations.
  123. ib_mapping_file_path: ""