We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b30320 commit 1df7cf6Copy full SHA for 1df7cf6
infra/k8s/oke/terraform/containerengine.tf
@@ -51,6 +51,12 @@ resource "oci_containerengine_node_pool" "okell_node_pool" {
51
image_id = local.oracle_linux_images.0 # Latest
52
source_type = "IMAGE"
53
}
54
+
55
+ node_shape_config {
56
+ memory_in_gbs = 16 # Specify the memory size in GBs
57
+ ocpus = 1 # Specify the number of OCPUs
58
+ }
59
60
61
62
data "oci_containerengine_node_pool_option" "okell_node_pool_option" {
infra/k8s/oke/terraform/main_var.tf
@@ -9,5 +9,5 @@ variable "vcnOcid" {}
9
variable "kubernetes_version" {
10
description = "OKE Version"
11
type = string
12
- default = "v1.28.2"
+ default = "v1.31.1"
13
0 commit comments