add tier to all deployments [ci skip]

This commit is contained in:
Viktor Barzin 2026-01-10 16:28:12 +00:00
parent 1b5cbeb9c8
commit f1e9fb9afe
88 changed files with 614 additions and 106 deletions

View file

@ -1,4 +1,5 @@
variable "tls_secret_name" {}
variable "tier" { type = string }
resource "kubernetes_namespace" "ollama" {
metadata {
@ -64,7 +65,8 @@ resource "kubernetes_deployment" "ollama" {
name = "ollama"
namespace = kubernetes_namespace.ollama.metadata[0].name
labels = {
app = "ollama"
app = "ollama"
tier = var.tier
}
}
spec {
@ -162,7 +164,8 @@ resource "kubernetes_deployment" "ollama-ui" {
name = "ollama-ui"
namespace = kubernetes_namespace.ollama.metadata[0].name
labels = {
app = "ollama-ui"
app = "ollama-ui"
tier = var.tier
}
}
spec {