appliance_config_test.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Copyright 2020 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. # Password used while deploying OS on bare metal servers and for Cobbler UI.
  16. # The Length of the password should be at least 8.
  17. # The password must not contain -,\, ',"
  18. provision_password: "omnia@123"
  19. # Password used for the AWX UI.
  20. # The Length of the password should be at least 8.
  21. # The password must not contain -,\, ',"
  22. awx_password: "omnia@123"
  23. # The nic/ethernet card that needs to be connected to the HPC switch.
  24. # This nic will be configured by Omnia for the DHCP server.
  25. # Default value of nic is em1.
  26. hpc_nic: "em1"
  27. # The nic/ethernet card that will be connected to the public internet.
  28. # Default value of nic is em2
  29. public_nic: "em2"
  30. # This is the path where user has kept the iso image that needs to be provisioned in target nodes.
  31. # The iso file should be CentOS7-2009-minimal edition.
  32. # Other iso files are not supported.
  33. iso_file_path: "/root/CentOS-7-x86_64-Minimal-2009.iso"
  34. # The mapping file consists of the MAC address and its respective IP address and hostname.
  35. # The format of mapping file should be MAC,hostname,IP and must be a CSV file.
  36. # A template for mapping file exists in omnia/examples and is named as mapping_file.csv.
  37. # This depicts the path where user has kept the mapping file for DHCP configurations.
  38. mapping_file_path: ""
  39. # The dhcp range for assigning the IPv4 address to the baremetal nodes.
  40. # Example: 10.1.23.1
  41. dhcp_start_ip_range: "172.17.0.10"
  42. dhcp_end_ip_range: "172.17.0.100"