test_provision_vars.yml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. # Usage: test_provision_cdip.yml
  16. empty_password: ""
  17. lengthy_password: "a1b2c3d4e5f6g7h8i9j10k11"
  18. whitespace_password: "hello world 123"
  19. special_character_password: "hello@123#%"
  20. first_nic: "eno1"
  21. nic1_ip_address: 172.17.0.1
  22. validate_password_success_msg: "Password validation successful"
  23. validate_password_fail_msg: "Password validation failed"
  24. cobbler_img_fail_msg: "Docker image cobbler does not exist"
  25. cobbler_img_success_msg: "Docker image cobbler exists"
  26. cobbler_cnt_fail_msg: "Docker container cobbler does not exist"
  27. cobbler_cnt_success_msg: "Docker container cobbler exists"
  28. nic_check_fail_msg: "NIC-1 ip address validation failed"
  29. nic_check_success_msg: "NIC-1 ip address validation successful"
  30. cobbler_image_files:
  31. - configure_nic
  32. - check_prerequisites
  33. - mount_iso
  34. - firewall_settings
  35. - provision_password
  36. - cobbler_image
  37. # Usage: test_provision_cc.yml
  38. docker_check_success_msg: "Docker service stopped usescase validation successful"
  39. docker_check_fail_msg: "Docker service stopped usescase validation failed"
  40. docker_ip_fail_msg: "Docker IP validation failed"
  41. docker_ip_success_msg: "Docker IP validation successful"
  42. cobbler_version_fail_msg: "Cobbler version validation failed"
  43. cobbler_version_success_msg: "Cobbler version validation successful"
  44. cobbler_check_fail_msg: "Cobbler check validation failed"
  45. cobbler_check_success_msg: "Cobbler check validation successful"
  46. cobbler_sync_fail_msg: "Cobbler sync validation failed"
  47. cobbler_sync_success_msg: "Cobbler sync validation successful"
  48. cobbler_distro_list_fail_msg: "Cobbler distro list validation failed"
  49. cobbler_distro_list_success_msg: "Cobbler distro list validation successful"
  50. cobbler_profile_list_fail_msg: "Cobbler profile list validation failed"
  51. cobbler_profile_list_success_msg: "Cobbler profile list validation successful"
  52. kickstart_file_fail_msg: "Kickstart file validation failed"
  53. kickstart_file_success_msg: "Kickstart file validation successful"
  54. cobbler_reboot_fail_msg: "Cobbler container failed to start after reboot"
  55. cobbler_reboot_success_msg: "Cobbler container started successfully after reboot"
  56. kickstart_filename: "centos8.ks"
  57. # Usage: test_provision_cdip.yml, test_provision_cc.yml, test_provision_ndod.yml
  58. docker_container_name: "cobbler"
  59. boundary_password: "testpass"
  60. # Usage: test_provision_ndod.yml
  61. hostname_fail_msg: "Hostname validation failed"
  62. hostname_success_msg: "Hostname validation successful"
  63. authentication_fail_msg: "Server authentication validation failed"
  64. authentication_success_msg: "Server authentication validation successful"
  65. ip_address_fail_msg: "IP address validation failed"
  66. ip_address_success_msg: "IP address validation successful"
  67. cobbler_groupname: "cobbler_servers"
  68. file_permission: 0644