Skip to content

Feat(19)-Updated cluster to 1.35#71

Merged
jae9104 merged 4 commits intomainfrom
Feat(19)-ClusterUpdateTo1.35
May 5, 2026
Merged

Feat(19)-Updated cluster to 1.35#71
jae9104 merged 4 commits intomainfrom
Feat(19)-ClusterUpdateTo1.35

Conversation

@jae9104
Copy link
Copy Markdown
Collaborator

@jae9104 jae9104 commented May 5, 2026

No description provided.

Copilot AI review requested due to automatic review settings May 5, 2026 12:17
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates the Oracle Kubernetes Engine Terraform configuration to newer Kubernetes versions and aligns node image selection with the configured cluster version, while also changing the Autonomous Database lifecycle behavior. It fits into the IaC layer that provisions the SPIRITBLADE runtime infrastructure on OCI.

Changes:

  • Upgrades the OKE cluster and node pool Kubernetes versions.
  • Changes ARM image selection to derive the OKE image version dynamically from the cluster version.
  • Makes the Autonomous Database ignore all subsequent Terraform-managed changes and removes a local helper script.

Reviewed changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated 3 comments.

File Description
iac/terraform/oke.tf Bumps OKE control plane and node pool Kubernetes versions.
iac/terraform/images.tf Changes OKE ARM image selection to use the cluster version dynamically.
iac/terraform/conv.py Removes a local script that generated a MySQL init shell script.
iac/terraform/adb.tf Changes ADB lifecycle rules to ignore all drift/updates.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread iac/terraform/oke.tf
cluster_id = oci_containerengine_cluster.k8s_cluster.id
compartment_id = var.compartment_ocid
kubernetes_version = "v1.31.1"
kubernetes_version = "v1.35.2"
Comment thread iac/terraform/images.tf
oke_arm_images = [
for source in data.oci_containerengine_node_pool_option.oke_options.sources :
source if can(regex("Oracle-Linux.*aarch64.*OKE-1\\.31\\.1", source.source_name))
source if can(regex(format("Oracle-Linux.*aarch64.*OKE-%s", replace(oci_containerengine_cluster.k8s_cluster.kubernetes_version, "v", "")), source.source_name))
Comment thread iac/terraform/adb.tf

lifecycle {
prevent_destroy = true
ignore_changes = all
@jae9104 jae9104 merged commit 734db36 into main May 5, 2026
9 checks passed
@jae9104 jae9104 deleted the Feat(19)-ClusterUpdateTo1.35 branch May 5, 2026 19:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants