Skip to content

Commit 2306968

Browse files
authored
Merge pull request #2376 from oracle/release_gh
Releasing version 6.37.0
2 parents 40005c7 + 03a4375 commit 2306968

File tree

262 files changed

+4345
-524
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

262 files changed

+4345
-524
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ vendor/github.com/oracle/oci-go-sdk/target
2828
internal/record
2929
.terraform.lock.hcl
3030
dist/
31-
examples/opsi/description.md
31+
internal/integrationtest/output

CHANGELOG.md

Lines changed: 11 additions & 0 deletions

examples/container_engine/main.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ variable "node_pool_cycling_details_maximum_unavailable" {
4848
default = "0"
4949
}
5050

51+
variable "node_pool_cycling_details_cycle_modes" {
52+
default = ["INSTANCE_REPLACE"]
53+
}
54+
5155
variable "node_pool_state" {
5256
default = []
5357
}
@@ -261,6 +265,7 @@ resource "oci_containerengine_node_pool" "test_node_pool" {
261265
is_node_cycling_enabled = var.node_pool_cycling_details_is_node_cycling_enabled
262266
maximum_surge = var.node_pool_cycling_details_maximum_surge
263267
maximum_unavailable = var.node_pool_cycling_details_maximum_unavailable
268+
cycle_modes = var.node_pool_cycling_details_cycle_modes
264269
}
265270

266271
node_source_details {
@@ -282,7 +287,7 @@ resource "oci_containerengine_node_pool" "test_flex_shape_node_pool" {
282287
compartment_id = var.compartment_ocid
283288
kubernetes_version = reverse(data.oci_containerengine_cluster_option.test_cluster_option.kubernetes_versions)[0]
284289
name = "flexShapePool"
285-
node_shape = "VM.Standard.E4.Flex"
290+
node_shape = "VM.Standard.E5.Flex"
286291
subnet_ids = [oci_core_subnet.nodePool_Subnet_1.id]
287292

288293
node_source_details {

examples/mysql/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ resource "oci_mysql_mysql_db_system" "test_mysql_db_system" {
133133

134134
#Optional
135135
deletion_policy {
136-
automatic_backup_retention = "DELETE"
136+
automatic_backup_retention = "RETAIN"
137137
final_backup = "SKIP_FINAL_BACKUP"
138138
is_delete_protected = "false"
139139
}

examples/resourcescheduler/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ variable "schedule_state" {
7373
}
7474

7575
variable "schedule_time_ends" {
76-
default = "2024-12-20T00:00:00Z"
76+
default = "2025-12-31T00:00:00Z"
7777
}
7878

7979
variable "schedule_time_starts" {
80-
default = "2024-12-01T00:00:00Z"
80+
default = "2025-05-01T00:00:00Z"
8181
}
8282

8383

@@ -124,7 +124,7 @@ resource "oci_resource_scheduler_schedule" "test_schedule" {
124124
}
125125

126126
#Optional
127-
defined_tags = map(oci_identity_tag_namespace.tag-namespace1.name.oci_identity_tag.tag1.name, var.schedule_defined_tags_value)
127+
# defined_tags = map(oci_identity_tag_namespace.tag-namespace1.name.oci_identity_tag.tag1.name, var.schedule_defined_tags_value)
128128
description = var.schedule_description
129129
display_name = var.schedule_display_name
130130
freeform_tags = var.schedule_freeform_tags

examples/zips/adm.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/aiDocument.zip

0 Bytes
Binary file not shown.

examples/zips/aiLanguage.zip

0 Bytes
Binary file not shown.

examples/zips/aiVision.zip

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)