add diun annotation [ci skip]

This commit is contained in:
Viktor Barzin 2024-08-17 20:23:20 +00:00
parent 0c46368c11
commit 15e951bd09
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863
8 changed files with 25 additions and 1 deletions

View file

@ -38,6 +38,9 @@ resource "kubernetes_deployment" "audiobookshelf" {
} }
template { template {
metadata { metadata {
annotations = {
"diun.enable" = "true"
}
labels = { labels = {
app = "audiobookshelf" app = "audiobookshelf"
} }

View file

@ -38,6 +38,9 @@ resource "kubernetes_deployment" "calibre" {
} }
template { template {
metadata { metadata {
annotations = {
"diun.enable" = "true"
}
labels = { labels = {
app = "calibre" app = "calibre"
} }

View file

@ -34,6 +34,9 @@ resource "kubernetes_deployment" "cyberchef" {
} }
template { template {
metadata { metadata {
annotations = {
"diun.enable" = "true"
}
labels = { labels = {
app = "cyberchef" app = "cyberchef"
} }

View file

@ -51,6 +51,9 @@ resource "kubernetes_deployment" "dashy" {
} }
template { template {
metadata { metadata {
annotations = {
"diun.enable" = "true"
}
labels = { labels = {
app = "dashy" app = "dashy"
} }

View file

@ -142,6 +142,9 @@ resource "kubernetes_deployment" "mailserver" {
} }
template { template {
metadata { metadata {
annotations = {
"diun.enable" = "true"
}
labels = { labels = {
"app" = "mailserver" "app" = "mailserver"
"role" = "mail" "role" = "mail"

View file

@ -37,6 +37,9 @@ resource "kubernetes_deployment" "technitium" {
} }
template { template {
metadata { metadata {
annotations = {
"diun.enable" = "true"
}
labels = { labels = {
app = "technitium" app = "technitium"
} }

View file

@ -38,6 +38,9 @@ resource "kubernetes_deployment" "uptime-kuma" {
} }
template { template {
metadata { metadata {
annotations = {
"diun.enable" = "true"
}
labels = { labels = {
app = "uptime-kuma" app = "uptime-kuma"
} }

View file

@ -36,13 +36,16 @@ resource "kubernetes_deployment" "vaultwarden" {
} }
template { template {
metadata { metadata {
annotations = {
"diun.enable" = "true"
}
labels = { labels = {
app = "vaultwarden" app = "vaultwarden"
} }
} }
spec { spec {
container { container {
image = "vaultwarden/server:1.31.0" image = "vaultwarden/server:1.32.0"
name = "vaultwarden" name = "vaultwarden"
env { env {
name = "DOMAIN" name = "DOMAIN"