mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 14:44:32 +00:00
- Include new `prole.spec` for build configurations and dependencies. - Add Terraform state handling for OpenTofu in `k3s` cluster. - Provision multiple Kubernetes resources in `prole-db` namespace: namespace, services, ConfigMaps, StatefulSets, Ingress rules, and PersistentVolumes. - Integrate deployment and configuration enhancements for `garage`, `prole`, and related components.
24 lines
557 B
HCL
24 lines
557 B
HCL
variable "k3s_server_url" {
|
|
type = string
|
|
description = "K3s API server URL (e.g., https://pi.prole.org:6443)"
|
|
}
|
|
|
|
variable "k3s_token" {
|
|
type = string
|
|
description = "K3s API token (unused when kubeconfig_path is set)"
|
|
sensitive = true
|
|
default = ""
|
|
}
|
|
|
|
variable "kubeconfig_path" {
|
|
type = string
|
|
description = "Path to a k3s kubeconfig file for API authentication"
|
|
default = ""
|
|
}
|
|
|
|
variable "namespace" {
|
|
type = string
|
|
description = "Target namespace for Prole resources"
|
|
default = "default"
|
|
}
|