03d5b39a4b
- 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.
30 lines
687 B
Terraform
30 lines
687 B
Terraform
variable "nextcloud_db_passwd" {
|
|
description = "Password for the Nextcloud database"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "nextcloud_db_root_password" {
|
|
description = "Root password for the Nextcloud database"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "nextcloud_admin_password" {
|
|
description = "Password for the Nextcloud admin user"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "telegram_bot_token" {
|
|
description = "Telegram bot token for Alertmanager notifications"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "webui_secret_key" {
|
|
description = "The secret key for WEBUI"
|
|
type = string
|
|
sensitive = true
|
|
}
|