fix
This commit is contained in:
@@ -2,7 +2,7 @@ resource "kubernetes_namespace_v1" "ns-tekton" {
|
||||
count = var.haveGitea && var.haveTekton?1:0
|
||||
metadata {
|
||||
annotations = local.annotations
|
||||
labels = merge(local.common-labels, local.annotations)
|
||||
labels = merge(local.common_labels, local.annotations)
|
||||
name = "${var.domain}-ci-${var.instance}"
|
||||
}
|
||||
}
|
||||
@@ -16,7 +16,7 @@ resource "kubectl_manifest" "tekton" {
|
||||
metadata:
|
||||
name: "tekton-base"
|
||||
namespace: "${var.domain}-ci-${var.instance}"
|
||||
labels: ${jsonencode(local.common-labels)}
|
||||
labels: ${jsonencode(local.common_labels)}
|
||||
spec:
|
||||
distrib: "${var.distributions.domain}"
|
||||
category: "share"
|
||||
@@ -43,7 +43,7 @@ resource "kubectl_manifest" "ci-ssh-creds" {
|
||||
metadata:
|
||||
name: "ssh-credentials"
|
||||
namespace: "${var.domain}-ci-${var.instance}"
|
||||
labels: ${jsonencode(local.common-labels)}
|
||||
labels: ${jsonencode(local.common_labels)}
|
||||
spec:
|
||||
length: "2048"
|
||||
forceRegenerate: false
|
||||
|
||||
Reference in New Issue
Block a user