1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- # 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 atleast 8.
- # The password must not contain -,\, ',"
- provision_password: ""
- # Password used for the AWX UI.
- # The Length of the password should be atleast 8.
- # The password must not contain -,\, ',"
- awx_password: ""
- # Password used for Slurm database.
- # The Length of the password should be atleast 8.
- # The password must not contain -,\, ',"
- mariadb_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 card that needs to be connected to the public internet.
- # The public_nic should be em2, em1 or em3
- # Default value of nic is em2.
- public_nic: "em2"
- # Kubernetes SDN network.
- # Options: calico/flannel.
- # Default value is calico.
- k8s_cni: "calico"
|