-
Notifications
You must be signed in to change notification settings - Fork 686
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Releasing version 6.1.0 #2149
Closed
Closed
Releasing version 6.1.0 #2149
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
090069f
Bug Fix - tagging in management_agent
6bf4d8d
Added - Support for Oracle Exadata Database Service on Exascale Infra…
9af3a29
Added - Support for File Storage: Clone detach feature
80edb21
Added - Support for Resource Scheduler
a535060
Added - Support for Generative AI Service - Lora Fine-Tuning Method
56d6edf
Added - Support for MySQL Homogenous Migration support
sagarp337 a7e315f
Vendored - oci-go-sdk v65.69.0 changes for existing & new services
sagarp337 6ccac07
Bug Fix - formatted database migration code
sagarp337 18386bf
Finalize changelog and release for version v6.1.0
sagarp337 d6fcec9
Bug Fix - database migration tests
sagarp337 92127b3
Vendored - oci-go-sdk for release version v65
vsin12 79c880e
Bug Fix - resolve merge conflicts
sagarp337 4b11f10
Added - Release for v6.1.0
sagarp337 c873e80
Bug Fix - changelog repeating issue
sagarp337 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved. | ||
// Licensed under the Mozilla Public License v2.0 | ||
|
||
data "oci_identity_availability_domains" "test_availability_domains" { | ||
compartment_id = var.tenancy_ocid | ||
} | ||
|
||
locals { | ||
ad = data.oci_identity_availability_domains.test_availability_domains.availability_domains.0.name | ||
} | ||
|
||
data "oci_database_backups" "test_database_backups_by_exadbxs" { | ||
compartment_id = var.compartment_ocid | ||
shape_family = "EXADB_XS" | ||
} | ||
|
||
data "oci_database_gi_versions" "test_gi_versions" { | ||
#Required | ||
compartment_id = var.compartment_ocid | ||
#Optional | ||
shape = "ExaDbXS" | ||
availability_domain = local.ad | ||
} | ||
|
||
data "oci_database_gi_version_minor_versions" "test_gi_minor_versions" { | ||
#Required | ||
version = data.oci_database_gi_versions.test_gi_versions.gi_versions[0].version | ||
#Optional | ||
compartment_id = data.oci_database_gi_versions.test_gi_versions.compartment_id | ||
availability_domain = data.oci_database_gi_versions.test_gi_versions.availability_domain | ||
shape_family = "EXADB_XS" | ||
shape = data.oci_database_gi_versions.test_gi_versions.shape | ||
is_gi_version_for_provisioning = false | ||
} | ||
|
49 changes: 49 additions & 0 deletions
49
examples/database/db_systems/db_exadbxs/exadb_vm_cluster.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved. | ||
// Licensed under the Mozilla Public License v2.0 | ||
|
||
resource "oci_database_exadb_vm_cluster" "test_exadb_vm_cluster" { | ||
|
||
#Required | ||
availability_domain = local.ad | ||
compartment_id = var.compartment_ocid | ||
display_name = "ExampleExadbVmCluster" | ||
exascale_db_storage_vault_id = oci_database_exascale_db_storage_vault.test_exascale_db_storage_vault.id | ||
grid_image_id = data.oci_database_gi_version_minor_versions.test_gi_minor_versions.gi_minor_versions[0].grid_image_id | ||
hostname = "apollo" | ||
cluster_name = "apollo" | ||
shape = "EXADBXS" | ||
ssh_public_keys = [var.ssh_public_key] | ||
subnet_id = oci_core_subnet.exadbxs_client_subnet.id | ||
backup_subnet_id = oci_core_subnet.exadbxs_backup_subnet.id | ||
|
||
node_config { | ||
enabled_ecpu_count_per_node = "8" | ||
total_ecpu_count_per_node = "16" | ||
vm_file_system_storage_size_gbs_per_node = "293" | ||
} | ||
|
||
node_resource { | ||
node_name = "node1" | ||
} | ||
|
||
node_resource { | ||
node_name = "node2" | ||
} | ||
|
||
node_resource { | ||
node_name = "node3" | ||
} | ||
|
||
} | ||
|
||
data "oci_database_exadb_vm_clusters" "test_exadb_vm_clusters" { | ||
#Required | ||
compartment_id = var.compartment_ocid | ||
#Optional | ||
exascale_db_storage_vault_id = oci_database_exascale_db_storage_vault.test_exascale_db_storage_vault.id | ||
} | ||
|
||
data "oci_database_exadb_vm_cluster" "test_exadb_vm_cluster" { | ||
#Required | ||
exadb_vm_cluster_id = oci_database_exadb_vm_cluster.test_exadb_vm_cluster.id | ||
} |
67 changes: 67 additions & 0 deletions
67
examples/database/db_systems/db_exadbxs/exadb_vm_cluster_database.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved. | ||
// Licensed under the Mozilla Public License v2.0 | ||
|
||
resource "oci_database_db_home" "test_db_home" { | ||
display_name = "ExampleExaDbVmDbHome" | ||
db_system_id = oci_database_exadb_vm_cluster.test_exadb_vm_cluster.id | ||
db_version = "23.4.0.24.05" | ||
} | ||
|
||
resource "oci_database_database" "test_db1" { | ||
database { | ||
admin_password = var.test_db_password | ||
db_name = "TFDB1" | ||
} | ||
db_home_id = oci_database_db_home.test_db_home.id | ||
source = "NONE" | ||
} | ||
|
||
resource "oci_database_database" "test_db2" { | ||
database { | ||
admin_password = var.test_db_password | ||
db_name = "TFDB2" | ||
} | ||
db_home_id = oci_database_db_home.test_db_home.id | ||
source = "NONE" | ||
} | ||
|
||
resource "oci_database_pluggable_database" "test_db1_pdb" { | ||
container_database_id = oci_database_database.test_db1.id | ||
pdb_name = "DB1PDB" | ||
pdb_admin_password = var.test_db_password | ||
tde_wallet_password = var.test_db_password | ||
} | ||
|
||
resource "oci_database_pluggable_database" "test_db1_local_cloned_pdb" { | ||
container_database_id = oci_database_database.test_db1.id | ||
pdb_name = "DB1LocalThinClonedPDB" | ||
pdb_admin_password = var.test_db_password | ||
tde_wallet_password = var.test_db_password | ||
pdb_creation_type_details { | ||
creation_type = "LOCAL_CLONE_PDB" | ||
source_pluggable_database_id = oci_database_pluggable_database.test_db1_pdb.id | ||
is_thin_clone = true | ||
} | ||
} | ||
|
||
# resource "oci_database_pluggable_database" "test_db2_remote_cloned_pdb" { | ||
# container_database_id = oci_database_database.test_db2.id | ||
# pdb_name = "DB2RemoteThinClonedPDB" | ||
# pdb_admin_password = var.test_db_password | ||
# tde_wallet_password = var.test_db_password | ||
# pdb_creation_type_details { | ||
# creation_type = "REMOTE_CLONE_PDB" | ||
# source_container_database_admin_password = var.test_db_password | ||
# source_pluggable_database_id = oci_database_pluggable_database.test_db1_pdb.id | ||
# is_thin_clone = true | ||
# } | ||
# } | ||
|
||
data "oci_database_pluggable_databases" "test_pdbs" { | ||
compartment_id = var.compartment_ocid | ||
state = "AVAILABLE" | ||
} | ||
|
||
data "oci_database_pluggable_database" "test_db1_local_cloned_pdb" { | ||
pluggable_database_id = oci_database_pluggable_database.test_db1_local_cloned_pdb.id | ||
} |
13 changes: 13 additions & 0 deletions
13
examples/database/db_systems/db_exadbxs/exadb_vm_cluster_db_node.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved. | ||
// Licensed under the Mozilla Public License v2.0 | ||
|
||
# Get db node list | ||
data "oci_database_db_nodes" "test_exadb_vm_cluster_db_nodes" { | ||
compartment_id = var.compartment_ocid | ||
vm_cluster_id = oci_database_exadb_vm_cluster.test_exadb_vm_cluster.id | ||
} | ||
|
||
# Get db node details | ||
data "oci_database_db_node" "test_exadb_vm_cluster_db_node" { | ||
db_node_id = data.oci_database_db_nodes.test_exadb_vm_cluster_db_nodes.db_nodes[0].id | ||
} |
13 changes: 13 additions & 0 deletions
13
examples/database/db_systems/db_exadbxs/exadb_vm_cluster_update_history_entries.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
data "oci_database_exadb_vm_cluster_update_history_entries" "test_exadb_vm_cluster_update_history_entries" { | ||
#Required | ||
exadb_vm_cluster_id = oci_database_exadb_vm_cluster.test_exadb_vm_cluster.id | ||
#Optional | ||
update_type = "OS_UPDATE" | ||
} | ||
|
||
data "oci_database_exadb_vm_cluster_update_history_entry" "test_exadb_vm_cluster_update_history_entry" { | ||
#Required | ||
exadb_vm_cluster_id = oci_database_exadb_vm_cluster.test_exadb_vm_cluster.id | ||
#Optional | ||
update_history_entry_id = data.oci_database_exadb_vm_cluster_update_history_entries.test_exadb_vm_cluster_update_history_entries.exadb_vm_cluster_update_history_entries[0].id | ||
} |
12 changes: 12 additions & 0 deletions
12
examples/database/db_systems/db_exadbxs/exadb_vm_cluster_updates.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
data "oci_database_exadb_vm_cluster_updates" "test_exadb_vm_cluster_updates" { | ||
#Required | ||
exadb_vm_cluster_id = oci_database_exadb_vm_cluster.test_exadb_vm_cluster.id | ||
#Optional | ||
update_type = "GI_PATCH" | ||
} | ||
|
||
data "oci_database_exadb_vm_cluster_update" "test_exadb_vm_cluster_update" { | ||
#Required | ||
exadb_vm_cluster_id = oci_database_exadb_vm_cluster.test_exadb_vm_cluster.id | ||
update_id = data.oci_database_exadb_vm_cluster_updates.test_exadb_vm_cluster_updates.exadb_vm_cluster_updates[0].id | ||
} |
23 changes: 23 additions & 0 deletions
23
examples/database/db_systems/db_exadbxs/exascale_db_storage_vault.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved. | ||
// Licensed under the Mozilla Public License v2.0 | ||
|
||
resource "oci_database_exascale_db_storage_vault" "test_exascale_db_storage_vault" { | ||
#Required | ||
availability_domain = local.ad | ||
compartment_id = var.compartment_ocid | ||
display_name = "ExampleExascaleDbStorageVault" | ||
high_capacity_database_storage { | ||
total_size_in_gbs = 800 | ||
} | ||
additional_flash_cache_in_percent = 20 | ||
} | ||
|
||
data "oci_database_exascale_db_storage_vaults" "test_exascale_db_storage_vaults" { | ||
#Required | ||
compartment_id = var.compartment_ocid | ||
} | ||
|
||
data "oci_database_exascale_db_storage_vault" "test_exascale_db_storage_vault" { | ||
#Required | ||
exascale_db_storage_vault_id = oci_database_exascale_db_storage_vault.test_exascale_db_storage_vault.id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved. | ||
// Licensed under the Mozilla Public License v2.0 | ||
|
||
resource "oci_core_virtual_network" "exadbxs_vcn" { | ||
compartment_id = var.compartment_ocid | ||
cidr_blocks = ["10.1.0.0/16"] | ||
display_name = "exadbxs-tf-vcn" | ||
dns_label = "tfvcn" | ||
} | ||
|
||
resource "oci_core_internet_gateway" "exadbxs_igw" { | ||
compartment_id = var.compartment_ocid | ||
vcn_id = oci_core_virtual_network.exadbxs_vcn.id | ||
display_name = "exadbxs-tf-igw" | ||
} | ||
|
||
resource "oci_core_route_table" "exadbxs_rt" { | ||
compartment_id = var.compartment_ocid | ||
vcn_id = oci_core_virtual_network.exadbxs_vcn.id | ||
display_name = "exadbxs-tf-route-table" | ||
route_rules { | ||
destination = "0.0.0.0/0" | ||
destination_type = "CIDR_BLOCK" | ||
network_entity_id = oci_core_internet_gateway.exadbxs_igw.id | ||
} | ||
} | ||
|
||
resource "oci_core_subnet" "exadbxs_client_subnet" { | ||
cidr_block = "10.1.20.0/24" | ||
compartment_id = var.compartment_ocid | ||
vcn_id = oci_core_virtual_network.exadbxs_vcn.id | ||
route_table_id = oci_core_route_table.exadbxs_rt.id | ||
security_list_ids = [ | ||
oci_core_virtual_network.exadbxs_vcn.default_security_list_id, | ||
oci_core_security_list.exadbxs_security_list.id | ||
] | ||
dns_label = "tfclientsub" | ||
display_name = "exadbxs-tf-client-subnet" | ||
} | ||
|
||
resource "oci_core_subnet" "exadbxs_backup_subnet" { | ||
cidr_block = "10.1.21.0/24" | ||
compartment_id = var.compartment_ocid | ||
vcn_id = oci_core_virtual_network.exadbxs_vcn.id | ||
route_table_id = oci_core_route_table.exadbxs_rt.id | ||
dns_label = "tfbackupsub" | ||
display_name = "exadbxs-tf-backup-subnet" | ||
} | ||
|
||
resource "oci_core_security_list" "exadbxs_security_list" { | ||
compartment_id = var.compartment_ocid | ||
vcn_id = oci_core_virtual_network.exadbxs_vcn.id | ||
display_name = "exadbxs-security-list" | ||
|
||
ingress_security_rules { | ||
source = "10.1.22.0/24" | ||
protocol = "6" | ||
} | ||
|
||
ingress_security_rules { | ||
source = "10.1.22.0/24" | ||
protocol = "1" | ||
} | ||
|
||
ingress_security_rules { | ||
source = "10.1.22.0/24" | ||
protocol = "all" | ||
} | ||
|
||
egress_security_rules { | ||
destination = "10.1.22.0/24" | ||
protocol = "6" | ||
} | ||
|
||
egress_security_rules { | ||
destination = "10.1.22.0/24" | ||
protocol = "1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved. | ||
// Licensed under the Mozilla Public License v2.0 | ||
|
||
provider "oci" { | ||
auth = var.auth | ||
config_file_profile = var.config_file_profile | ||
region = var.region | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved. | ||
// Licensed under the Mozilla Public License v2.0 | ||
|
||
variable "tenancy_ocid" {} | ||
variable "region" {} | ||
variable "compartment_ocid" {} | ||
variable "config_file_profile" {} | ||
variable "auth" { | ||
default = "SecurityToken" | ||
} | ||
|
||
variable "ssh_public_key" { | ||
default = "" | ||
} | ||
|
||
variable "db_name" { | ||
default = "TFDB" | ||
} | ||
|
||
variable "test_db_password" { | ||
default = "BEstrO0ng_#11" | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change log repeating - check v6.0.0 vs v6.1.0