Skip to content

Commit

Permalink
Update pod-subnet
Browse files Browse the repository at this point in the history
  • Loading branch information
OguzPastirmaci authored and hyder committed Jan 7, 2025
1 parent 358db71 commit be46627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/workers/instanceconfig.tf
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ resource "oci_core_instance_configuration" "workers" {
user_data = lookup(lookup(data.cloudinit_config.workers, each.key, {}), "rendered", "")
oke-native-pod-networking = var.cni_type == "npn" ? true : false
oke-max-pods = var.max_pods_per_node
pod-subnets = try(module.network.pod_subnet_id, "")
pod-subnets = coalesce(var.pod_subnet_id, var.worker_subnet_id, "none")
},

# Only provide cluster DNS service address if set explicitly; determined automatically in practice.
Expand Down

0 comments on commit be46627

Please sign in to comment.