main.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. k8s_packages:
  25. - kubelet-1.16.7
  26. - kubeadm-1.16.7
  27. - kubectl-1.16.7
  28. k8s_repo_dest: /etc/yum.repos.d/
  29. elrepo_gpg_key_url: https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
  30. elrepo_rpm_url: https://www.elrepo.org/elrepo-release-8.el8.elrepo.noarch.rpm
  31. docker_repo_url: https://download.docker.com/linux/centos/docker-ce.repo
  32. docker_repo_dest: /etc/yum.repos.d/docker-ce.repo
  33. k8s_conf_dest: /etc/sysctl.d/
  34. k8s_repo_file_mode: 0644
  35. k8s_conf_file_mode: 0644