Skip to content

Commit 5a558c9

Browse files
author
psaini
committed
Added README.md Fixes
1 parent 828bff6 commit 5a558c9

File tree

2 files changed

+21
-19
lines changed

2 files changed

+21
-19
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In this v1.0.0 release, `OraOperator` supports the following database configurat
1313
* Containerized Single Instance databases (SIDB) deployed in the Oracle Kubernetes Engine (OKE) and any k8s where OraOperator is deployed
1414
* Containerized Sharded databases (SHARDED) deployed in OKE and any k8s where OraOperator is deployed
1515
* Oracle Multitenant Databases (CDB/PDBs)
16-
* Oracle Database Cloud Service (DBCS) (VMDB)
16+
* Oracle Base Database Cloud Service (BDBCS)
1717
* Cloud Native Database Observer
1818

1919
Oracle will continue to extend `OraOperator` to support additional Oracle Database configurations.
@@ -27,7 +27,7 @@ This release of Oracle Database Operator for Kubernetes (the operator) supports
2727
* SIDB: Provision, clone, patch (in-place/out-of-place), update database initialization parameters, update database configuration (Flashback, archiving), Oracle Enterprise Manager (EM) Express (a basic observability console), Oracle REST Data Service (ORDS) to support REST based SQL, PDB management, SQL Developer Web, and Application Express (Apex)
2828
* SHARDED: Provision/deploy sharded databases and the shard topology, Add a new shard, Delete an existing shard
2929
* Oracle Multitenant Database: Bind to a CDB, Create a  PDB, Plug a  PDB, Unplug a PDB, Delete a PDB, Clone a PDB, Open/Close a PDB
30-
* Database Cloud Service: Provision, Bind, Scale Up/Down, Liveness Probe, Manual Backup
30+
* Oracle Base Database Cloud Service (BDBCS): Provision, Bind, Scale Up/Down, Liveness Probe, Manual Backup
3131
* Cloud Native Database Observer: Provide Quick/Detailed Database Status
3232

3333
The upcoming releases will support new configurations, operations and capabilities.
@@ -95,7 +95,7 @@ The quickstarts are designed for specific database configurations:
9595
* [Containerized Oracle Single Instance Database](./docs/sidb/README.md)
9696
* [Containerized Oracle Sharded Database](./docs/sharding/README.md)
9797
* [Oracle Multitenant Database](./docs/multitenant/README.md)
98-
* [Oracle Database Cloud Service](./docs/dbcs/README.md)
98+
* [Oracle Base Database Cloud Service (BDBCS)](./docs/dbcs/README.md)
9999
* [Cloud Native Database Observer](./docs/observability/README.md)
100100

101101
YAML file templates are available under [`/config/samples`](./config/samples/). You can copy and edit these template files to configure them for your use cases.

docs/dbcs/README.md

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# Using the DB Operator DBCS Controller
22

3-
Oracle Cloud Infastructure (OCI) Database Cloud Service (DBCS) provides single-node Database (DB) systems, deployed on virtual machines, and provides two-node Oracle Real Appliation Clusters (Oracle RAC) database systems on virtual machines.
3+
Oracle Cloud Infastructure (OCI) Oracle Base Database Cloud Service (BDBCS) provides single-node Database (DB) systems, deployed on virtual machines, and provides two-node Oracle Real Appliation Clusters (Oracle RAC) database systems on virtual machines.
44

55
The single-node DB systems and Oracle RAC systems on virtual machines are [co-managed Oracle Database cloud solutions](https://docs.oracle.com/en-us/iaas/Content/Database/Concepts/overview.htm). To manage the lifecycle of an OCI DBCS system, you can use the OCI Console, the REST API, or the Oracle Cloud Infrastructure command-line interface (CLI). At the granular level, you can use the Oracle Database CLI (DBCLI), Oracle Enterprise Manager, or Oracle SQL Developer.
66

7-
The Oracle DB Operator DBCS Controller is a feature of the Oracle DB Operator for Kubernetes (OraOperator) which uses OCI's DBCS service to support lifecycle management of the database systems.
7+
The Oracle DB Operator DBCS Controller is a feature of the Oracle DB Operator for Kubernetes (OraOperator) which uses OCI's BDBCS service to support lifecycle management of the database systems.
8+
9+
Note: Oracle Base Database Cloud Service (BDBCS) was previously known as Database Cloud Service (DBCS).
810

911
# Supported Database Editions and Versions
1012

@@ -113,7 +115,7 @@ kubectl create secret generic oci-privatekey --from-file=privatekey=/root/.oci/o
113115
```
114116

115117

116-
## 3. Create a Kubernetes secret named `admin-password`; This passward must meet the minimum passward requirements for the OCI DBCS Service.
118+
## 3. Create a Kubernetes secret named `admin-password`; This passward must meet the minimum passward requirements for the OCI BDBCS Service.
117119
For example:
118120

119121
```
@@ -123,7 +125,7 @@ kubectl create secret generic admin-password --from-file=./admin-password -n def
123125
```
124126

125127

126-
## 4. Create a Kubernetes secret named `tde-password`; this passward must meet the minimum passward requirements for the OCI DBCS Service.
128+
## 4. Create a Kubernetes secret named `tde-password`; this passward must meet the minimum passward requirements for the OCI BDBCS Service.
127129
For example:
128130

129131
```
@@ -165,22 +167,22 @@ The key's randomart image is:
165167

166168
# Use Cases to manage the lifecycle of an OCI DBCS System with Oracle DB Operator DBCS Controller
167169

168-
For more informatoin about the multiple use cases available to you to deploy and manage the OCI DBCS Service-based database using the Oracle DB Operator DBCS Controller, review this list:
170+
For more informatoin about the multiple use cases available to you to deploy and manage the OCI BDBCS Service-based database using the Oracle DB Operator DBCS Controller, review this list:
169171

170-
[1. Deploy a DB System using OCI DBCS Service with minimal parameters](./provisioning/dbcs_service_with_minimal_parameters.md)
171-
[2. Binding to an existing DBCS System already deployed in OCI DBCS Service](./provisioning/bind_to_existing_dbcs_system.md)
172-
[3. Scale UP the shape of an existing DBCS System](./provisioning/scale_up_dbcs_system_shape.md)
173-
[4. Scale DOWN the shape of an existing DBCS System](./provisioning/scale_down_dbcs_system_shape.md)
174-
[5. Scale UP the storage of an existing DBCS System](./provisioning/scale_up_storage.md)
175-
[6. Update License type of an existing DBCS System](./provisioning/update_license.md)
176-
[7. Terminate an existing DBCS System](./provisioning/terminate_dbcs_system.md)
177-
[8. Create DBCS with All Parameters with Storage Management as LVM](./provisioning/dbcs_service_with_all_parameters_lvm.md)
178-
[9. Create DBCS with All Parameters with Storage Management as ASM](./provisioning/dbcs_service_with_all_parameters_asm.md)
179-
[10. Deploy a 2 Node RAC DB System using OCI DBCS Service](./provisioning/dbcs_service_with_2_node_rac.md)
172+
[1. Deploy a DB System using OCI BDBCS Service with minimal parameters](./provisioning/dbcs_service_with_minimal_parameters.md)
173+
[2. Binding to an existing DBCS System already deployed in OCI BDBCS Service](./provisioning/bind_to_existing_dbcs_system.md)
174+
[3. Scale UP the shape of an existing BDBCS System](./provisioning/scale_up_dbcs_system_shape.md)
175+
[4. Scale DOWN the shape of an existing BDBCS System](./provisioning/scale_down_dbcs_system_shape.md)
176+
[5. Scale UP the storage of an existing BDBCS System](./provisioning/scale_up_storage.md)
177+
[6. Update License type of an existing BDBCS System](./provisioning/update_license.md)
178+
[7. Terminate an existing BDBCS System](./provisioning/terminate_dbcs_system.md)
179+
[8. Create BDBCS with All Parameters with Storage Management as LVM](./provisioning/dbcs_service_with_all_parameters_lvm.md)
180+
[9. Create BDBCS with All Parameters with Storage Management as ASM](./provisioning/dbcs_service_with_all_parameters_asm.md)
181+
[10. Deploy a 2 Node RAC DB System using OCI BDBCS Service](./provisioning/dbcs_service_with_2_node_rac.md)
180182

181183
## Connecting to OCI DBCS database deployed using Oracle DB Operator DBCS Controller
182184

183-
After you have deployed the OCI DBCS database with the Oracle DB Operator DBCS Controller, you can connect to the database. To see how to connect and use the database, refer to the steps in [Database Connectivity](./provisioning/database_connection.md).
185+
After you have deployed the OCI BDBCS database with the Oracle DB Operator DBCS Controller, you can connect to the database. To see how to connect and use the database, refer to the steps in [Database Connectivity](./provisioning/database_connection.md).
184186

185187
## Known Issues
186188

0 commit comments

Comments
 (0)