feat(vaultwarden): add SMTP configuration options and enhance signup settings

- Introduced SMTP settings for Vaultwarden including host, port, security, and authentication details.
- Added variables for signup verification, 2FA settings, password hints, and logging options.
- Updated Vaultwarden deployment to utilize new SMTP configurations.
- Enhanced Grafana module to support dynamic dashboard and datasource provisioning.
- Added LLM proxy configuration for Open Web UI with necessary environment variables.
This commit is contained in:
2026-05-30 23:24:44 +02:00
parent 350650ecc2
commit ec740f458f
89 changed files with 3154 additions and 856 deletions
+13
View File
@@ -0,0 +1,13 @@
---
# amd_rocm defaults
rocm_repo_baseurl: "https://repo.radeon.com/rocm/el9/latest/main/"
rocm_repo_gpgkey: "https://repo.radeon.com/rocm/rocm.gpg.key"
rocmgraphics_repo_baseurl: "https://repo.radeon.com/graphics/latest/el/9.6/main/x86_64/"
rocm_packages:
- rocm
- rocm-developer-tools
- hipblas-devel
- hip-devel
- rocwmma-devel
- rocm-opencl-devel
+18
View File
@@ -0,0 +1,18 @@
---
galaxy_info:
author: Alexandre Pires
description: Install AMD ROCm repository and packages for GPU computing
company: A13Labs
role_name: amd_rocm
namespace: a13labs
license: MIT
min_ansible_version: "2.1"
platforms:
- name: Fedora
versions:
- "39"
- "40"
- "41"
- name: EL
versions:
- "9"
+52
View File
@@ -0,0 +1,52 @@
---
- name: Add ROCm repository (yum)
when: ansible_pkg_mgr == 'yum'
become: true
ansible.builtin.yum_repository:
name: rocm
description: ROCm Repository
baseurl: "{{ rocm_repo_baseurl }}"
gpgcheck: true
gpgkey: "{{ rocm_repo_gpgkey }}"
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
ansible.builtin.yum_repository:
name: rocmgraphics
description: AMD Graphics Repository
baseurl: "{{ rocmgraphics_repo_baseurl }}"
gpgkey: "{{ rocm_repo_gpgkey }}"
gpgcheck: true
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:
name: "{{ rocm_packages }}"
state: present