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:
@@ -0,0 +1,29 @@
|
||||
---
|
||||
- name: Install nvidia-cdi-generator
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name:
|
||||
- nvidia-container-toolkit
|
||||
state: present
|
||||
|
||||
- name: Create systemd service file for nvidia-cdi-generator
|
||||
become: true
|
||||
ansible.builtin.copy:
|
||||
src: services/nvidia-cdi-generator.service
|
||||
dest: /etc/systemd/system/nvidia-cdi-generator.service
|
||||
owner: root
|
||||
group: root
|
||||
mode: "0644"
|
||||
|
||||
- name: Reload systemd daemon
|
||||
become: true
|
||||
ansible.builtin.systemd:
|
||||
daemon_reload: true
|
||||
name: nvidia-cdi-generator
|
||||
|
||||
- name: Enable nvidia-cdi-generator service
|
||||
become: true
|
||||
ansible.builtin.systemd:
|
||||
name: nvidia-cdi-generator
|
||||
enabled: true
|
||||
state: started
|
||||
Reference in New Issue
Block a user