123456789101112131415161718192021222324252627282930313233343536373839404142 |
- # Copyright 2020 Dell Inc. or its subsidiaries. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- ---
- # Password used while deploying OS on bare metal servers and for Cobbler UI.
- # The Length of the password should be at least 8.
- # The password must not contain -,\, ',"
- provision_password: ""
- # Password used for the AWX UI.
- # The Length of the password should be at least 8.
- # The password must not contain -,\, ',"
- awx_password: ""
- # The nic/ethernet card that needs to be connected to the HPC switch.
- # This nic will be configured by Omnia for the DHCP server.
- # Default value of nic is em1.
- hpc_nic: "em1"
- # The nic/ethernet card that will be connected to the public internet.
- # Default value of nic is em2
- public_nic: "em2"
- # The mapping file consists of the MAC address and its respective IP address and hostname.
- # If user wants to provide a mapping file, set this value to "true"
- # The format of mapping file should be MAC,hostname,IP and must be a CSV file.
- mapping_file_exists: ""
- # The dhcp range for assigning the IP address to the baremetal nodes.
- dhcp_start_ip_range: ""
- dhcp_end_ip_range: ""
|