Skip to content

Commit 62e96aa

Browse files
Merge pull request #1867 from oracle/release_gh
Releasing version 4.120.0
2 parents 59bd9a6 + 6fb0a12 commit 62e96aa

File tree

178 files changed

+2956
-156
lines changed

Some content is hidden

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

178 files changed

+2956
-156
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions

coverage/coverage_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414

1515
var totalRgx = regexp.MustCompile(`total:\s+\(statements\)\s+([^"]*)%`)
1616

17-
const CodeCoverageThreshold = 57.1
17+
const CodeCoverageThreshold = 56.1
1818

1919
func TestCoverage(t *testing.T) {
2020
if os.Getenv("CHECK_COVERAGE") != "true" {

examples/database/exadata_cc/exadata-infrastructure.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ resource "oci_database_exadata_infrastructure" "test_exadata_infrastructure" {
5050
is_cps_offline_report_enabled = false
5151
is_multi_rack_deployment = false
5252

53+
#Optional
54+
network_bonding_mode_details {
55+
backup_network_bonding_mode = "ACTIVE_BACKUP"
56+
client_network_bonding_mode = "ACTIVE_BACKUP"
57+
}
58+
5359
#Optional
5460
contacts {
5561
email = "testuser2@testdomain.com"

examples/ocvp/main.tf

Lines changed: 41 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ data "oci_ocvp_supported_host_shapes" "test_supported_host_shapes" {
4747
// Required
4848
compartment_id = "${var.compartment_ocid}"
4949
// Optional
50-
name = "BM.DenseIO2.52"
50+
name = "BM.Standard2.52"
5151
sddc_type = "PRODUCTION"
5252
}
5353

@@ -358,6 +358,38 @@ resource "oci_core_vlan" "test_replication_vlan" {
358358
route_table_id = oci_core_vcn.test_vcn_ocvp.default_route_table_id
359359
}
360360

361+
resource "oci_core_volume" "test_block_volume" {
362+
availability_domain = data.oci_identity_availability_domains.ADs.availability_domains[0]["name"]
363+
compartment_id = var.compartment_ocid
364+
display_name = "TestBlockVolume"
365+
size_in_gbs = "4096"
366+
}
367+
368+
resource "oci_core_compute_capacity_reservation" "test_compute_capacity_reservation" {
369+
#Required
370+
availability_domain = data.oci_identity_availability_domains.ADs.availability_domains[0]["name"]
371+
compartment_id = var.compartment_ocid
372+
373+
instance_reservation_configs {
374+
#Required
375+
instance_shape = "BM.Standard2.52"
376+
reserved_count = 2
377+
fault_domain = "FAULT-DOMAIN-1"
378+
}
379+
instance_reservation_configs {
380+
#Required
381+
instance_shape = "BM.Standard2.52"
382+
reserved_count = 1
383+
fault_domain = "FAULT-DOMAIN-2"
384+
}
385+
instance_reservation_configs {
386+
#Required
387+
instance_shape = "BM.Standard2.52"
388+
reserved_count = 1
389+
fault_domain = "FAULT-DOMAIN-3"
390+
}
391+
}
392+
361393
resource "oci_ocvp_sddc" "test_sddc" {
362394
// Required
363395
compartment_id = var.compartment_ocid
@@ -380,9 +412,14 @@ resource "oci_ocvp_sddc" "test_sddc" {
380412
replication_vlan_id = oci_core_vlan.test_replication_vlan.id
381413
initial_sku = "HOUR"
382414
initial_host_ocpu_count = "52.0"
383-
initial_host_shape_name = "BM.DenseIO2.52"
415+
initial_host_shape_name = "BM.Standard2.52"
416+
capacity_reservation_id = oci_core_compute_capacity_reservation.test_compute_capacity_reservation.id
417+
datastores {
418+
#Required
419+
block_volume_ids = ["${oci_core_volume.test_block_volume.id}"]
420+
datastore_type = "MANAGEMENT"
421+
}
384422
is_shielded_instance_enabled = false
385-
is_non_production = false
386423
hcx_action = "upgrade"
387424
refresh_hcx_license_status = true
388425
#reserving_hcx_on_premise_license_keys = var.reserving_hcx_on_premise_license_keys
@@ -400,7 +437,7 @@ resource "oci_ocvp_esxi_host" "test_esxi_host" {
400437
compute_availability_domain = data.oci_identity_availability_domains.ADs.availability_domains[0]["name"]
401438
current_sku = "HOUR"
402439
host_ocpu_count = "52.0"
403-
host_shape_name = "BM.DenseIO2.52"
440+
host_shape_name = "BM.Standard2.52"
404441
next_sku = "HOUR"
405442
#non_upgraded_esxi_host_id = data.oci_ocvp_esxi_hosts.non_upgraded_esxi_hosts.esxi_host_collection[0].id
406443
#defined_tags = {"${oci_identity_tag_namespace.tag-namespace1.name}.${oci_identity_tag.tag1.name}" = "${var.esxihost_defined_tags_value}"}

examples/zips/adm.zip

0 Bytes
Binary file not shown.

examples/zips/aiAnomalyDetection.zip

0 Bytes
Binary file not shown.

examples/zips/aiVision.zip

0 Bytes
Binary file not shown.

examples/zips/always_free.zip

0 Bytes
Binary file not shown.

examples/zips/analytics.zip

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

0 commit comments

Comments
 (0)