Skip to content

Commit

Permalink
cluster-tools update
Browse files Browse the repository at this point in the history
Signed-off-by: junior <[email protected]>
  • Loading branch information
junior committed Sep 7, 2022
1 parent c267e2a commit 87289e8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.0
0.5.0
3 changes: 3 additions & 0 deletions module-cluster-tools.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ module "cluster-tools" {
region = var.region

# Cluster Tools
## Namespace
cluster_tools_namespace = "cluster-tools"

## Ingress
ingress_nginx_enabled = var.ingress_nginx_enabled
ingress_load_balancer_shape = var.ingress_load_balancer_shape
Expand Down
9 changes: 7 additions & 2 deletions modules/cluster-tools/cluster-tools.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Create namespace cluster-tools for supporting services
resource "kubernetes_namespace" "cluster_tools" {
metadata {
name = "cluster-tools"
name = var.cluster_tools_namespace
}
}

Expand All @@ -28,4 +28,9 @@ locals {
# OCI Provider
variable "tenancy_ocid" {}
variable "compartment_ocid" {}
variable "region" {}
variable "region" {}

# Namespace
variable "cluster_tools_namespace" {
default = "cluster-tools"
}

0 comments on commit 87289e8

Please sign in to comment.