Add support for Ubuntu containers and WSL verification
- Implemented tasks for managing Ubuntu containers using Podman, including inspection, creation, starting, and SSH setup. - Added verification tasks for WSL and Podman installation, machine existence, and NSSM service status. - Created PowerShell scripts for Podman auto-start on Windows boot. - Introduced Prometheus role with default configurations and installation tasks. - Updated Windows SSH role to improve authorized_keys management and permissions handling. - Modified inventory to include Windows containers host. - Updated Grafana datasource configurations with direct IP addresses for Prometheus instances.
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
---
|
||||
- name: Add ROCm repository (yum)
|
||||
when: ansible_pkg_mgr == 'yum'
|
||||
become: true
|
||||
ansible.builtin.yum_repository:
|
||||
name: rocm
|
||||
@@ -11,17 +10,6 @@
|
||||
enabled: true
|
||||
state: present
|
||||
|
||||
- name: Add ROCm repository (dnf)
|
||||
when: ansible_pkg_mgr == 'dnf'
|
||||
become: true
|
||||
ansible.builtin.dnf_repository:
|
||||
name: rocm
|
||||
description: ROCm Repository
|
||||
baseurl: "{{ rocm_repo_baseurl }}"
|
||||
gpgcheck: yes
|
||||
gpgkey: "{{ rocm_repo_gpgkey }}"
|
||||
enabled: yes
|
||||
|
||||
- name: Add AMD Graphics repository (yum)
|
||||
when: ansible_pkg_mgr == 'yum'
|
||||
become: true
|
||||
@@ -34,17 +22,6 @@
|
||||
enabled: true
|
||||
state: present
|
||||
|
||||
- name: Add AMD Graphics repository (dnf)
|
||||
when: ansible_pkg_mgr == 'dnf'
|
||||
become: true
|
||||
ansible.builtin.dnf_repository:
|
||||
name: rocmgraphics
|
||||
description: AMD Graphics Repository
|
||||
baseurl: "{{ rocmgraphics_repo_baseurl }}"
|
||||
gpgkey: "{{ rocm_repo_gpgkey }}"
|
||||
gpgcheck: yes
|
||||
enabled: yes
|
||||
|
||||
- name: Install rocm-dkms and dependencies
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
|
||||
Reference in New Issue
Block a user