1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # Copyright 2021 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.
- ---
- # vars file for control_plane_customiso
- #Usage: check_prerequisites.yml
- iso_mount_path: /mnt/iso/
- iso_mount_check_fail_msg: "ISO file not mounted. Ensure /mnt/iso path is mounted with centos ISO file."
- #Usage: edit_iso_config.yml
- tmp_iso_dir: /tmp/iso/
- kickstart_file: centos7.cfg
- file_permission: 0744
- isolinux_cfg_path: isolinux/isolinux.cfg
- grub_cfg_path: EFI/BOOT/grub.cfg
- host_nic:
- - em1
- - em2
- - em3
- - em4
- - p4p1
- - p4p2
- - p3p1
- - p3p2
- - p2p1
- - p2p2
- - p1p2
- - p1p1
- #Usage: create_unattended_iso.yml
- unattended_iso_filename: unattended_centos7.iso
- custom_iso_success_msg: "Unattended ISO file created successfully"
- custom_iso_fail_msg: "Unattended ISO file creation failed. Ensure /mnt/iso path is mounted with valid centos minimal ISO file."
- management_station_ip_file: "management_station_ip.txt"
|