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.
58 lines
1.4 KiB
Terraform
58 lines
1.4 KiB
Terraform
variable "persistent_folder" {
|
|
description = "The path to the persistent folder"
|
|
type = string
|
|
}
|
|
|
|
variable "fqdn" {
|
|
description = "The fully qualified domain name for the app server"
|
|
type = string
|
|
}
|
|
|
|
variable "tag" {
|
|
description = "The version of app to install"
|
|
type = string
|
|
default = "main"
|
|
}
|
|
|
|
variable "issuer" {
|
|
description = "The issuer for the certificate"
|
|
type = string
|
|
default = "internal-ca"
|
|
}
|
|
|
|
variable "ollama_proxy" {
|
|
description = "Configuration for the Ollama proxy"
|
|
type = object({
|
|
enabled = bool
|
|
mac = optional(string, "")
|
|
ip = optional(string, "")
|
|
port = optional(string, "11434")
|
|
scheme = optional(string, "http")
|
|
})
|
|
default = {
|
|
enabled = false
|
|
}
|
|
|
|
}
|
|
|
|
variable "secret_key" {
|
|
description = "The secret key for WEBUI"
|
|
type = string
|
|
}
|
|
|
|
variable "jwt_expires_in" {
|
|
description = "Always set a reasonable expiration time in production environments (e.g., 3600s, 1h, 7d etc.) to limit the lifespan of authentication tokens."
|
|
default = "1h"
|
|
type = string
|
|
}
|
|
|
|
variable "log_level" {
|
|
description = "The global log level for the application"
|
|
type = string
|
|
default = "INFO"
|
|
validation {
|
|
condition = contains(["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"], var.log_level)
|
|
error_message = "log_level must be one of: DEBUG, INFO, WARNING, ERROR, CRITICAL"
|
|
}
|
|
}
|