123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- # 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.
- ---
- docker_login_fail_msg: "Docker login failed! Please check the credentials and re-execute playbook."
- k8s_root_directory: /root/.kube
- k8s_root_directory_mode: 0755
- k8s_config_src: /etc/kubernetes/admin.conf
- k8s_config_dest: /root/.kube/config
- k8s_config_file_mode: 0600
- k8s_cert_path: /etc/kubernetes/pki/ca.crt
- k8s_dummy_hostname: K8S_TOKEN_HOLDER
- yaml_repo_dir_path: /root/k8s
- yaml_repo_dir_mode: 0755
- k8s_service_account_file_dest: /root/k8s/create_admin_user.yaml
- k8s_service_account_file_mode: 0655
- cluster_role_binding_file_dest: /root/k8s/create_clusterRoleBinding.yaml
- cluster_role_binding_file_mode: 0655
- calico_yml_file_path: /root/k8s/kube-calico.yaml
- calico_yml_file_mode: 0644
- flannel_yml_file_path: /root/k8s/kube-flannel.yaml
- flannel_yml_file_mode: 0644
|