main.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. common_packages:
  16. - epel-release
  17. - yum-plugin-versionlock
  18. - gcc
  19. - nfs-utils
  20. - python3-pip
  21. - docker-ce
  22. - bash-completion
  23. - nvidia-detect
  24. - chrony
  25. - pciutils
  26. k8s_packages:
  27. - kubelet-1.16.7
  28. - kubeadm-1.16.7
  29. - kubectl-1.16.7
  30. k8s_repo_dest: /etc/yum.repos.d/
  31. elrepo_gpg_key_url: https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
  32. elrepo_rpm_url: https://www.elrepo.org/elrepo-release-7.el7.elrepo.noarch.rpm
  33. docker_repo_url: https://download.docker.com/linux/centos/docker-ce.repo
  34. docker_repo_dest: /etc/yum.repos.d/docker-ce.repo
  35. k8s_conf_dest: /etc/sysctl.d/
  36. k8s_repo_file_mode: 0644
  37. k8s_conf_file_mode: 0644
  38. chrony_path: "/etc/chrony.conf"
  39. ntp_path: "/etc/ntp.conf"
  40. ntp_mode: "0644"
  41. os_higher_version: "8"
  42. os_version: "7"
  43. retry_count_one: "10"
  44. delay_count_one: "60"
  45. retry_count: "6"
  46. delay_count: "10"
  47. ntp_servers:
  48. - 0.centos.pool.ntp.org
  49. - 1.centos.pool.ntp.org
  50. - 2.centos.pool.ntp.org
  51. chrony_servers:
  52. - 2.centos.pool.ntp.org
  53. nvidia_docker_repo_url: https://nvidia.github.io/nvidia-docker/centos7/nvidia-docker.repo
  54. nvidia_docker_repo_dest: /etc/yum.repos.d/nvidia-docker.repo
  55. nvidia_container_repo_url: https://nvidia.github.io/libnvidia-container/centos7/libnvidia-container.repo
  56. nvidia_container_repo_dest: /etc/yum.repos.d/libnvidia-container.repo
  57. nvidia_packages:
  58. - kmod-nvidia
  59. - nvidia-docker2
  60. daemon_file_dest: /etc/docker/
  61. daemon_file_mode: 0644