Skip to content
This repository has been archived by the owner on Jan 27, 2024. It is now read-only.

Commit

Permalink
Rename kpi to mfnf
Browse files Browse the repository at this point in the history
  • Loading branch information
hugotiburtino committed Jan 23, 2024
1 parent 00b6b85 commit 86d9a08
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kpi.tf → mfnf.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ locals {
module "mfnf2serlo" {
source = "github.com/serlo/infrastructure-modules-shared.git//mfnf2serlo?ref=v17.8.0"

namespace = kubernetes_namespace.kpi_namespace.metadata.0.name
namespace = kubernetes_namespace.mfnf_namespace.metadata.0.name

node_pool = module.cluster.node_pools.non-preemptible

Expand All @@ -16,7 +16,7 @@ module "mfnf2serlo_ingress" {
source = "github.com/serlo/infrastructure-modules-shared.git//ingress?ref=v13.2.0"

name = "mfnf"
namespace = kubernetes_namespace.kpi_namespace.metadata.0.name
namespace = kubernetes_namespace.mfnf_namespace.metadata.0.name

host = "mfnf.${local.domain}"
backend = {
Expand All @@ -27,8 +27,8 @@ module "mfnf2serlo_ingress" {
enable_cors = true
}

resource "kubernetes_namespace" "kpi_namespace" {
resource "kubernetes_namespace" "mfnf_namespace" {
metadata {
name = "kpi"
name = "mfnf"
}
}

0 comments on commit 86d9a08

Please sign in to comment.