1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- # Copyright 2022 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 provision
- # Usage: mapping_file.yml
- temp_host_mapping_file: "{{ role_path }}/files/new_host_mapping_file.csv"
- # Usage: check_prerequisite.yml
- cobbler_namespace: cobbler
- # Usage: provision_password.yml
- provision_encrypted_dest: ../files/
- login_file: "{{ role_path }}/../../input_params/login_vars.yml"
- base_file: "{{ role_path }}/../../input_params/base_vars.yml"
- login_vault_file: "{{ role_path }}/../../input_params/.login_vault_key"
- username: cobbler
- user_mode: 0644
- cobbler_centos_ks: centos7.ks
- cobbler_rocky_ks: rocky8.ks
- cobbler_leap_ks: leap15.xml
- centos_host_nic:
- - em1
- - em2
- - em3
- - em4
- - p4p1
- - p4p2
- - p3p1
- - p3p2
- - p2p1
- - p2p2
- - p1p2
- - p1p1
- rocky_host_nic:
- - eno1
- - eno2
- - eno3
- - eno4
- - ens4f0
- - ens4f1
- - ens3f0
- - ens3f1
- - ens2f0
- - ens2f1
- - ens1f0
- - ens1f1
- http_port: 8000
- # Usage: cobbler_image.yml
- cobbler_image_name: cobbler
- cobbler_image_tag: latest
- # Usage: main.yml
- message_skipped: "Installation Skipped: Cobbler instance is already running in your system"
- message_installed: "Installation Successful"
- # Usage: multi_cluster_provisioning.yml
- file_perm: '0775'
- # Usage: multi_cluster_provisioning.yml
- temp_file_perm: '0644'
|