intel_tools.yml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. # intel_tools.yml: Install Intel-branded tools
  16. # Install the Intel Parallel Studio XE Runtime repository and packages
  17. - hosts: cluster
  18. tasks:
  19. - name: Import the Intel(R) Parallel Studio XE Runtime Repo GPG Key
  20. rpm_key:
  21. state: present
  22. key: https://yum.repos.intel.com/2020/setup/RPM-GPG-KEY-intel-psxe-runtime-2020
  23. - name: Enable the Intel(R) Parallel Studio XE Runtime Repository
  24. package:
  25. name: https://yum.repos.intel.com/2020/setup/intel-psxe-runtime-2020-reposetup-1-0.noarch.rpm
  26. state: present
  27. - name: Install Intel(R) Parallel Studio XE Runtime 2020
  28. package:
  29. name: intel-psxe-runtime
  30. state: present
  31. # Install the Intel Cluster Checker
  32. - hosts: cluster
  33. tasks:
  34. - name: Import the Intel(R) Cluster Checker Repo GPG Key
  35. rpm_key:
  36. state: present
  37. key: https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB
  38. - name: Enable the Intel(R) Cluster Checker Repository
  39. yum_repository:
  40. name: intel-clck-2019-repo
  41. description: Intel(R) Cluster Checker 2019
  42. baseurl: https://yum.repos.intel.com/clck/2019
  43. gpgcheck: yes
  44. gpgkey: https://yum.repos.intel.com/clck/2019/setup/PUBLIC_KEY.PUB
  45. - name: Enable the Intel(R) Cluster Checker Extensions Repository
  46. yum_repository:
  47. name: intel-clck-ext-2019-repo
  48. description: Intel(R) Cluster Checker Select Solutions Extensions 2019
  49. baseurl: https://yum.repos.intel.com/clck-ext/2019
  50. gpgcheck: yes
  51. gpgkey: https://yum.repos.intel.com/clck-ext/2019/setup/PUBLIC_KEY.PUB
  52. - name: Install the Intel(R) Cluster Checker
  53. package:
  54. name: intel-clck-2019.8-*
  55. state: present