123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- # 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.
- ---
- ### Usage: provision_cobbler, provison_idrac ###
- # Password used while deploying OS on bare metal servers.
- # The Length of the password should be at least 8.
- # The password must not contain -,\, ',"
- # Mandatory value required
- provision_password: "test@123"
- ### Usage: provision_cobbler ###
- # Password used for cobbler
- # The Length of the password should be at least 8.
- # The password must not contain -,\, ',"
- # Mandatory value required
- cobbler_password: "test@123"
- ### Usage: provision_idrac ###
- # The username for idrac
- # The username must not contain -,\, ',"
- # Mandatory value required
- idrac_username: "root"
- # Password used for idrac
- # The password must not contain -,\, ',"
- # Mandatory value required
- idrac_password: "calvin"
- ### Usage: webui_awx ###
- # Password used for awx UI
- # The Length of the password should be at least 8.
- # The password must not contain -,\, ',"
- #awx_password: ""
- ### Usage: network_ethernet ###
- # The username for ethernet switch
- # The username must not contain -,\, ',"
- ethernet_switch_username: "admin"
- # Password used for ethernet switch
- # The password must not contain -,\, ',"
- ethernet_switch_password: "admin"
- ### Usage: network_ib ###
- # The username for infiniband switch
- # The username must not contain -,\, ',"
- ib_username: "admin"
- # Password used for infiniband switch
- # The password must not contain -,\, ',"
- ib_password: "admin"
- ### Usage: powervault_me4 ###
- # The username for powervault_me4
- # The username must not contain -,\, ',"
- powervault_me4_username: "manage"
- # Password used for powervault_me4
- # The password should have atleast one uppercase character, one lowercase character,
- # one numeric character and one non-alphanumeric character.
- # The password must not contain -,\, ',", . , < , comma(,)
- powervault_me4_password: "Test@123"
|