Skip to content

Commit 01bdcd5

Browse files
Merge pull request #56 from oracle-quickstart/25.4.0
Add 25.4.0
2 parents 3fa53ef + 5f8a4c5 commit 01bdcd5

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ You can use the instructions [here](https://docs.oracle.com/en-us/iaas/Content/C
4646
### Deploy the cluster using the Oracle Cloud Resource Manager template
4747
You can easily deploy the cluster using the **Deploy to Oracle Cloud** button below.
4848

49-
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle-quickstart/oci-hpc-oke/releases/download/v25.3.1/oke-rdma-quickstart-v25.3.1.zip)
49+
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle-quickstart/oci-hpc-oke/releases/download/v25.4.0/oke-rdma-quickstart-v25.4.0.zip)
5050

5151
For the image ID, use the ID of the image that you imported in the previous step.
5252

terraform/oke-cluster.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ module "oke" {
8585
kubernetes_version = var.kubernetes_version
8686
load_balancers = "internal"
8787
lockdown_default_seclist = true
88+
max_pods_per_node = var.max_pods_per_node
8889
operator_image_type = "platform"
8990
operator_image_os = "Canonical Ubuntu" # Ignored when bastion_image_type = "custom"
9091
operator_image_os_version = "22.04"

terraform/output.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# Terraform
55
output "state_id" { value = module.oke.state_id }
6-
output "stack_version" { value = "v25.3.1" }
6+
output "stack_version" { value = "v25.4.0" }
77

88
# Network
99
output "vcn_id" { value = module.oke.vcn_id }

terraform/variables.tf

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
variable "compartment_ocid" { type = string }
55
variable "create_policies" { default = true }
66
variable "create_vcn" { default = true }
7-
variable "kubernetes_version" { default = "v1.31.1" }
7+
variable "kubernetes_version" { default = "v1.32.1" }
88
variable "region" { type = string }
99
variable "tenancy_ocid" { type = string }
1010
variable "vcn_cidrs" { default = "10.140.0.0/16" }
@@ -41,6 +41,12 @@ variable "bastion_image_id" {
4141
variable "cluster_name" { default = "oke-gpu-quickstart" }
4242
variable "control_plane_allowed_cidrs" { default = ["0.0.0.0/0"] }
4343

44+
variable "max_pods_per_node" {
45+
default = 110
46+
description = "The default maximum number of pods to deploy per node when unspecified on a pool. Absolute maximum is 110. Ignored when when cni_type != 'npn'."
47+
type = number
48+
}
49+
4450
variable "create_operator" { default = false }
4551
variable "operator_shape_config" { default = false }
4652
variable "operator_shape_name" { default = "VM.Standard.E5.Flex" }

0 commit comments

Comments
 (0)