feat: Add ROCm support and update Ollama configurations

- Created ansible playbooks for setting up AMD ROCm container environment.
- Added ROCm and AMD Graphics repositories in ansible tasks.
- Installed necessary ROCm packages including rocm-dkms and developer tools.
- Updated Dockerfile for Ollama to use version 0.13.4 and created a new Dockerfile for ROCm support.
- Enhanced game station scripts for better performance and added MangoHud configuration.
- Modified systemd service files to allow CPU core allocation.
- Updated playbooks for Ollama and Qwen2 to include new configurations and environment variables.
- Added Wake-on-LAN systemd service configuration.
- Updated Terraform configurations to include secret management for the web UI.
- Refactored Kubernetes deployment for open-webui to include secret handling and improved volume management.
This commit is contained in:
2025-12-25 16:37:05 +01:00
parent 4781ddbaff
commit 03d5b39a4b
31 changed files with 497 additions and 80 deletions
+33
View File
@@ -0,0 +1,33 @@
- name: Add ROCm repository
become: true
ansible.builtin.yum_repository:
name: rocm
description: ROCm Repository
baseurl: https://repo.radeon.com/rocm/el9/latest/main/
gpgcheck: true
gpgkey: https://repo.radeon.com/rocm/rocm.gpg.key
enabled: true
state: present
- name: Add AMD Graphics repository
become: true
ansible.builtin.yum_repository:
name: rocmgraphics
description: AMD Graphics Repository
baseurl: https://repo.radeon.com/graphics/latest/el/9.6/main/x86_64/
gpgkey: https://repo.radeon.com/rocm/rocm.gpg.key
gpgcheck: true
enabled: true
state: present
- name: Install rocm-dkms and dependencies
become: true
ansible.builtin.package:
name:
- rocm
- rocm-developer-tools
- hipblas-devel
- hip-devel
- rocwmma-devel
- rocm-opencl-devel
state: present
+1
View File
@@ -112,6 +112,7 @@
network: "{{ podman_network_name | default(omit) }}"
ports: "{{ item.ports | default(omit) }}"
volumes: "{{ item.volumes | default(omit) }}"
command: "{{ item.command | default(omit) }}"
cmd_args:
- "--userns=keep-id"
- "--security-opt=label=disable"
+19 -2
View File
@@ -23,12 +23,29 @@
group: root
mode: "0644"
- name: Create systemd WOL config
become: true
ansible.builtin.copy:
dest: "/etc/systemd/system/wol.service"
content: |
[Unit]
Description=Enable Wake-on-LAN
After=network-online.target
[Service]
Type=oneshot
ExecStart=/sbin/ethtool --change {{ network_interface }} wol g
[Install]
WantedBy=network-online.target
owner: root
group: root
mode: "0644"
- name: Enable and restart systemd-networkd
become: true
ansible.builtin.systemd:
name: systemd-networkd
name: wol.service
state: started
enabled: true
state: restarted
- name: Confirm WOL setting applied
become: true