Non-functional Vigil
This commit is contained in:
parent
70e46005a7
commit
1e5bbb94ae
8 changed files with 287 additions and 6 deletions
32
modules/vigil/configuration.tf
Normal file
32
modules/vigil/configuration.tf
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
locals {
|
||||||
|
services_toml = [
|
||||||
|
for service_group, services in var.services : templatefile("${path.module}/vigil.service.toml.tpl", {
|
||||||
|
service_group_id = service_group
|
||||||
|
service_group_label = service_group
|
||||||
|
services = services
|
||||||
|
})
|
||||||
|
]
|
||||||
|
vigil_toml = templatefile("${path.module}/vigil.toml.tpl", {
|
||||||
|
manager_token = random_password.token["manager"].result
|
||||||
|
reporter_token = random_password.token["worker"].result
|
||||||
|
page_title = var.page_title
|
||||||
|
page_url = var.page_url
|
||||||
|
company_name = var.company_name
|
||||||
|
icon_color = var.icon_color
|
||||||
|
icon_url = var.icon_url
|
||||||
|
logo_color = var.logo_color
|
||||||
|
logo_url = var.logo_url
|
||||||
|
website_url = var.website_url
|
||||||
|
support_url = var.support_url
|
||||||
|
custom_html = var.custom_html
|
||||||
|
services = local.services_toml
|
||||||
|
})
|
||||||
|
vigil_toml_checksum = md5(local.vigil_toml)
|
||||||
|
}
|
||||||
|
resource "scratch_string" "services" {
|
||||||
|
in = yamlencode(local.services_toml)
|
||||||
|
}
|
||||||
|
resource "local_file" "vigil_toml" {
|
||||||
|
filename = "${path.root}/.debug/vigil.toml"
|
||||||
|
content = local.vigil_toml
|
||||||
|
}
|
68
modules/vigil/inputs.tf
Normal file
68
modules/vigil/inputs.tf
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
variable "vigil_version" {
|
||||||
|
type = string
|
||||||
|
description = "The version of Vigil to deploy"
|
||||||
|
default = "v1.26.3"
|
||||||
|
}
|
||||||
|
variable "vigil_service_name" {
|
||||||
|
type = string
|
||||||
|
description = "The name of the Vigil service"
|
||||||
|
default = "vigil"
|
||||||
|
}
|
||||||
|
variable "services" {
|
||||||
|
type = map(list(object({
|
||||||
|
id = string
|
||||||
|
label = string
|
||||||
|
endpoints = list(string)
|
||||||
|
})))
|
||||||
|
}
|
||||||
|
variable "page_title" {
|
||||||
|
type = string
|
||||||
|
description = "The title of the Vigil page"
|
||||||
|
default = "Vigil"
|
||||||
|
}
|
||||||
|
variable "page_url" {
|
||||||
|
type = string
|
||||||
|
description = "The URL of the Vigil page"
|
||||||
|
default = "https://vigil.example.com"
|
||||||
|
}
|
||||||
|
variable "company_name" {
|
||||||
|
type = string
|
||||||
|
description = "The name of the company"
|
||||||
|
default = "ExampleCo"
|
||||||
|
}
|
||||||
|
variable "icon_color" {
|
||||||
|
type = string
|
||||||
|
description = "The color of the icon"
|
||||||
|
default = "#1972F5"
|
||||||
|
}
|
||||||
|
variable "icon_url" {
|
||||||
|
type = string
|
||||||
|
description = "The URL of the icon"
|
||||||
|
default = "https://example.com/icon.png"
|
||||||
|
}
|
||||||
|
variable "logo_color" {
|
||||||
|
type = string
|
||||||
|
description = "The color of the logo"
|
||||||
|
default = "#1972F5"
|
||||||
|
}
|
||||||
|
variable "logo_url" {
|
||||||
|
type = string
|
||||||
|
description = "The URL of the logo"
|
||||||
|
default = "https://example.com/logo.png"
|
||||||
|
}
|
||||||
|
variable "website_url" {
|
||||||
|
type = string
|
||||||
|
description = "The URL of the website"
|
||||||
|
default = "https://example.com"
|
||||||
|
}
|
||||||
|
variable "support_url" {
|
||||||
|
type = string
|
||||||
|
description = "The URL of the support page"
|
||||||
|
default = "https://example.com/support"
|
||||||
|
}
|
||||||
|
variable "custom_html" {
|
||||||
|
type = string
|
||||||
|
description = "Custom HTML to include in the Vigil page"
|
||||||
|
default = ""
|
||||||
|
}
|
||||||
|
|
16
modules/vigil/terraform.tf
Normal file
16
modules/vigil/terraform.tf
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
terraform {
|
||||||
|
required_providers {
|
||||||
|
docker = {
|
||||||
|
source = "kreuzwerker/docker"
|
||||||
|
version = "~>3.0"
|
||||||
|
}
|
||||||
|
random = {
|
||||||
|
source = "hashicorp/random"
|
||||||
|
version = "~>3.3"
|
||||||
|
}
|
||||||
|
scratch = {
|
||||||
|
source = "BrendanThompson/scratch"
|
||||||
|
version = "~> 0.4"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
14
modules/vigil/vigil.service.toml.tpl
Normal file
14
modules/vigil/vigil.service.toml.tpl
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
[[probe.service]]
|
||||||
|
id = "${service_group_id}"
|
||||||
|
label = "${service_group_label}"
|
||||||
|
|
||||||
|
[[probe.service.node]]
|
||||||
|
id = "${id}"
|
||||||
|
label = "${label}"
|
||||||
|
mode = "poll"
|
||||||
|
reveal_replica_name = true
|
||||||
|
replicas = [
|
||||||
|
%{ for endpoint in endpoints ~}
|
||||||
|
"${endpoint}",
|
||||||
|
%{ endfor ~}
|
||||||
|
]
|
55
modules/vigil/vigil.tf
Normal file
55
modules/vigil/vigil.tf
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
resource "random_password" "token" {
|
||||||
|
for_each = toset(["manager", "worker"])
|
||||||
|
length = 32
|
||||||
|
special = false
|
||||||
|
}
|
||||||
|
data "docker_registry_image" "vigil" {
|
||||||
|
name = "valeriansaliou/vigil:${var.vigil_version}"
|
||||||
|
}
|
||||||
|
resource "docker_service" "vigil" {
|
||||||
|
name = lower(var.vigil_service_name)
|
||||||
|
task_spec {
|
||||||
|
container_spec {
|
||||||
|
image = "${data.docker_registry_image.vigil.name}@${data.docker_registry_image.vigil.sha256_digest}"
|
||||||
|
healthcheck {
|
||||||
|
test = ["CMD-SHELL", "wget -q --no-verbose --tries=1 --spider http://localhost:8080/ || exit 1"]
|
||||||
|
interval = "10s"
|
||||||
|
timeout = "10s"
|
||||||
|
retries = 3
|
||||||
|
start_period = "1m"
|
||||||
|
}
|
||||||
|
configs {
|
||||||
|
config_id = docker_config.vigil.id
|
||||||
|
config_name = docker_config.vigil.name
|
||||||
|
file_name = "/etc/vigil.cfg"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
restart_policy {
|
||||||
|
condition = "any"
|
||||||
|
delay = "20s"
|
||||||
|
window = "0s"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
converge_config {
|
||||||
|
delay = "5s"
|
||||||
|
timeout = "2m"
|
||||||
|
}
|
||||||
|
update_config {
|
||||||
|
order = "stop-first"
|
||||||
|
parallelism = 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
resource "random_id" "vigil_iter" {
|
||||||
|
byte_length = 4
|
||||||
|
keepers = {
|
||||||
|
checksum = local.vigil_toml_checksum
|
||||||
|
}
|
||||||
|
}
|
||||||
|
resource "docker_config" "vigil" {
|
||||||
|
name = lower(join("-", [var.vigil_service_name, random_id.vigil_iter.hex]))
|
||||||
|
data = sensitive(base64encode(local.vigil_toml)) // I have marked this as sensitive just so it wont spam the hell out of the terminal with a wall of text. Its not actually sensitive.
|
||||||
|
lifecycle {
|
||||||
|
ignore_changes = [name]
|
||||||
|
create_before_destroy = true
|
||||||
|
}
|
||||||
|
}
|
71
modules/vigil/vigil.toml.tpl
Normal file
71
modules/vigil/vigil.toml.tpl
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
# Vigil
|
||||||
|
# Microservices Status Page
|
||||||
|
# Configuration file
|
||||||
|
# Example: https://github.com/valeriansaliou/vigil/blob/master/config.cfg
|
||||||
|
|
||||||
|
[server]
|
||||||
|
log_level = "debug"
|
||||||
|
inet = "0.0.0.0:3000"
|
||||||
|
workers = 4
|
||||||
|
|
||||||
|
manager_token = "${manager_token}"
|
||||||
|
reporter_token = "${reporter_token}"
|
||||||
|
|
||||||
|
[assets]
|
||||||
|
path = "./res/assets/"
|
||||||
|
|
||||||
|
[branding]
|
||||||
|
page_title = "${page_title}"
|
||||||
|
page_url = "${page_url}"
|
||||||
|
company_name = "${company_name}"
|
||||||
|
icon_color = "${icon_color}"
|
||||||
|
icon_url = "${icon_url}"
|
||||||
|
logo_color = "${logo_color}"
|
||||||
|
logo_url = "${logo_url}"
|
||||||
|
website_url = "${website_url}"
|
||||||
|
support_url = "${support_url}"
|
||||||
|
custom_html = "${custom_html}"
|
||||||
|
|
||||||
|
[metrics]
|
||||||
|
poll_interval = 15
|
||||||
|
poll_retry = 2
|
||||||
|
poll_http_status_healthy_above = 200
|
||||||
|
poll_http_status_healthy_below = 400
|
||||||
|
poll_delay_dead = 10
|
||||||
|
poll_delay_sick = 5
|
||||||
|
poll_parallelism = 4
|
||||||
|
push_delay_dead = 20
|
||||||
|
push_system_cpu_sick_above = 0.90
|
||||||
|
push_system_ram_sick_above = 0.90
|
||||||
|
script_interval = 300
|
||||||
|
script_parallelism = 2
|
||||||
|
local_delay_dead = 40
|
||||||
|
|
||||||
|
[plugins]
|
||||||
|
|
||||||
|
[plugins.rabbitmq]
|
||||||
|
api_url = "http://127.0.0.1:15672"
|
||||||
|
auth_username = "rabbitmq-administrator"
|
||||||
|
auth_password = "RABBITMQ_ADMIN_PASSWORD"
|
||||||
|
virtualhost = "crisp"
|
||||||
|
queue_ready_healthy_below = 500
|
||||||
|
queue_nack_healthy_below = 100
|
||||||
|
queue_ready_dead_above = 20000
|
||||||
|
queue_nack_dead_above = 5000
|
||||||
|
queue_loaded_retry_delay = 500
|
||||||
|
|
||||||
|
[notify]
|
||||||
|
startup_notification = false
|
||||||
|
reminder_interval = 600
|
||||||
|
reminder_backoff_function = "linear"
|
||||||
|
reminder_backoff_limit = 3
|
||||||
|
|
||||||
|
#[notify.telegram]
|
||||||
|
#bot_token = "xxxxxxxxxx:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
||||||
|
#chat_id = "xxxxxxxxx"
|
||||||
|
|
||||||
|
[probe]
|
||||||
|
|
||||||
|
%{ for service in services ~}
|
||||||
|
${service}
|
||||||
|
%{ endfor ~}
|
|
@ -4,7 +4,7 @@ resource "docker_image" "octoprint" {
|
||||||
build {
|
build {
|
||||||
context = "${path.module}/printers"
|
context = "${path.module}/printers"
|
||||||
target = "octoprint-mjpg-streamer"
|
target = "octoprint-mjpg-streamer"
|
||||||
tag = ["ti-octoprint"]
|
tag = ["ti-octoprint:latest"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
25
vigil.tf
Normal file
25
vigil.tf
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
module "vigil" {
|
||||||
|
source = "./modules/vigil"
|
||||||
|
services = {
|
||||||
|
"printers" = [
|
||||||
|
{
|
||||||
|
id = "prin.ti"
|
||||||
|
label = "Prin.ti (Print Controller)"
|
||||||
|
endpoints = [
|
||||||
|
"icmp://prin.ti",
|
||||||
|
"tcp://prin.ti:22",
|
||||||
|
"http://prin.ti:3000",
|
||||||
|
]
|
||||||
|
}, {
|
||||||
|
id = "v400"
|
||||||
|
label = "FLSun V400"
|
||||||
|
endpoints = [
|
||||||
|
"icmp://v400.prin.ti",
|
||||||
|
"tcp://v400.prin.ti:22",
|
||||||
|
"http://v400.prin.ti:80",
|
||||||
|
"http://v400.prin.ti:8080",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
Reference in a new issue