123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- # 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.
- ---
- # Usage: test_provision_cdip.yml
- empty_password: ""
- lengthy_password: "a1b2c3d4e5f6g7h8i9j10k11"
- whitespace_password: "hello world 123"
- special_character_password: "hello@123#%"
- first_nic: "eno1"
- nic1_ip_address: 172.17.0.1
- validate_password_success_msg: "Password validation successful"
- validate_password_fail_msg: "Password validation failed"
- cobbler_img_fail_msg: "Docker image cobbler does not exist"
- cobbler_img_success_msg: "Docker image cobbler exists"
- cobbler_cnt_fail_msg: "Docker container cobbler does not exist"
- cobbler_cnt_success_msg: "Docker container cobbler exists"
- nic_check_fail_msg: "NIC-1 ip address validation failed"
- nic_check_success_msg: "NIC-1 ip address validation successful"
- cobbler_image_files:
- - configure_nic
- - check_prerequisites
- - mount_iso
- - firewall_settings
- - provision_password
- - cobbler_image
- # Usage: test_provision_cc.yml
- docker_check_success_msg: "Docker service stopped usescase validation successful"
- docker_check_fail_msg: "Docker service stopped usescase validation failed"
- docker_ip_fail_msg: "Docker IP validation failed"
- docker_ip_success_msg: "Docker IP validation successful"
- cobbler_version_fail_msg: "Cobbler version validation failed"
- cobbler_version_success_msg: "Cobbler version validation successful"
- cobbler_check_fail_msg: "Cobbler check validation failed"
- cobbler_check_success_msg: "Cobbler check validation successful"
- cobbler_sync_fail_msg: "Cobbler sync validation failed"
- cobbler_sync_success_msg: "Cobbler sync validation successful"
- cobbler_distro_list_fail_msg: "Cobbler distro list validation failed"
- cobbler_distro_list_success_msg: "Cobbler distro list validation successful"
- cobbler_profile_list_fail_msg: "Cobbler profile list validation failed"
- cobbler_profile_list_success_msg: "Cobbler profile list validation successful"
- kickstart_file_fail_msg: "Kickstart file validation failed"
- kickstart_file_success_msg: "Kickstart file validation successful"
- cobbler_reboot_fail_msg: "Cobbler container failed to start after reboot"
- cobbler_reboot_success_msg: "Cobbler container started successfully after reboot"
- kickstart_filename: "centos8.ks"
- # Usage: test_provision_cdip.yml, test_provision_cc.yml, test_provision_ndod.yml
- docker_container_name: "cobbler"
- boundary_password: "testpass"
- # Usage: test_provision_ndod.yml
- hostname_fail_msg: "Hostname validation failed"
- hostname_success_msg: "Hostname validation successful"
- authentication_fail_msg: "Server authentication validation failed"
- authentication_success_msg: "Server authentication validation successful"
- ip_address_fail_msg: "IP address validation failed"
- ip_address_success_msg: "IP address validation successful"
- cobbler_groupname: "cobbler_servers"
- file_permission: 0644
|