mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 16:04:31 +00:00
- Add k3s start/stop Ansible playbooks and roles. - Implement OpenTofu initialization scripts and k8s manifests. - Update ncurses installer with OpenTofu support and improved k3s integration. - Add mode support (--mode) to etc/ initialization scripts. - Update prole-db with recovery, barman objectstore, and SSH OpenBao support. - Refine k8s manifests for OpenBao and prole-db.
17 lines
356 B
HCL
17 lines
356 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"
|
|
sensitive = true
|
|
}
|
|
|
|
variable "namespace" {
|
|
type = string
|
|
description = "Target namespace for Prole resources"
|
|
default = "default"
|
|
}
|