Skip to content
This repository was archived by the owner on Nov 2, 2023. It is now read-only.

Commit 46ff7c9

Browse files
New Release v1.3.0 for OCI Service Broker
- Adding support for Mumbai (BOM), Zurich (ZRH), Sao Paulo (GRU), Sydney (SYD) regions - Adding support to update license type in ATP and ADW Service - Adding support for autoscaling in ATP and ADW Service Co-authored-by: Ashokkumar Kannan [email protected] Co-authored-by: Jayasheelan Kumar [email protected] Co-authored-by: Naman Mehta [email protected]
1 parent 523aeb3 commit 46ff7c9

File tree

20 files changed

+134
-20
lines changed

20 files changed

+134
-20
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
[1.3.0]
9+
10+
- Adding support for Mumbai (BOM), Zurich (ZRH), Sao Paulo (GRU), Sydney (SYD) regions
11+
- Adding support to update license type in ATP and ADW Service
12+
- Adding support for autoscaling in ATP and ADW Service
13+
814
[1.2.1]
915

1016
- Minor Update to use unified API for ATP/ADW service. Internal change with no customer impact

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ See the [Documentation](charts/oci-service-broker/README.md#oci-service-broker)
2929
The OCI Service Broker is packaged as Helm chart for making it easy to install in Kubernetes Clusters. The chart can be downloaded from below URL.
3030

3131
```
32-
https://github.com/oracle/oci-service-broker/releases/download/v1.2.1/oci-service-broker-1.2.1.tgz
32+
https://github.com/oracle/oci-service-broker/releases/download/v1.3.0/oci-service-broker-1.3.0.tgz
3333
```
3434

3535
## Samples

charts/oci-service-broker/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
apiVersion: v1
66
description: A Helm chart for installing OCI Service Broker into a Kubernetes cluster
77
name: oci-service-broker
8-
version: 1.2.1
8+
version: 1.3.0

charts/oci-service-broker/docs/adw.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ To provision, an ADW service user needs to provide the following details:
6060
| `storageSizeTBs` | Size of the DB Storage in Terrabytes. | int | yes |
6161
| `password` | ADW Service will pre-provision a DB Admin user when it provisions an ADW instance. The user needs to provide a password to be set for this Admin user.<br>The OCI ADW service requires the password to satisfy the below rules.<br><ul><li>The length should be 12 to 18 characters.</li><li>A password must include an upper case, lower case, and special character.</li></ul> | string | yes |
6262
| `licenseType` | Use your existing database software licenses(BYOL) or Subscribe to new database software licenses and the Database Cloud Service.<br>Valid values are:<ul><li>BYOL</li><li>NEW</li></ul>. | string | yes |
63+
| `autoScaling` | The flag to enable auto-scaling in ADW Instance. Allows system to use up to three times the provisioned number of cores as the workload increases. By default, this flag is set to false. | boolean| no |
6364
| `freeFormTags` | free form tags that are to be used for tagging the ADW instance. | object | no |
6465
| `definedTags` | The defined tags that are to be used for tagging the ADW instance. | object | no |
6566

charts/oci-service-broker/docs/atp.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ To provision, an ATP service user needs to provide the following details:
6060
| `storageSizeTBs` | Size of the DB Storage in Terrabytes. | int | yes |
6161
| `password` | ATP Service will pre-provision a DB Admin user when it provisions an ATP instance. The user needs to provide a password to be set for this Admin user.<br>The OCI ATP service requires the password to satisfy the below rules.<br><ul><li>The length should be 12 to 18 characters.</li><li>A password must include an upper case, lower case, and special character.</li></ul> | string | yes |
6262
| `licenseType` | Use your existing database software licenses(BYOL) or Subscribe to new database software licenses and the Database Cloud Service.<br>Valid values are:<ul><li>BYOL</li><li>NEW</li></ul>. | string | yes |
63+
| `autoScaling` | The flag to enable auto-scaling in ATP Instance. Allows system to use up to three times the provisioned number of cores as the workload increases. By default, this flag is set to false. | boolean| no |
6364
| `freeFormTags` | free form tags that are to be used for tagging the ATP instance. | object | no |
6465
| `definedTags` | The defined tags that are to be used for tagging the ATP instance. | object | no |
6566

charts/oci-service-broker/docs/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ brew update && brew install kubernetes-service-catalog-client
6969
The OCI Service Broker is packaged as Helm chart for making it easy to install in Kubernetes. The chart is available at [charts/oci-service-broker](../) directory.
7070

7171
```plain
72-
https://github.com/oracle/oci-service-broker/releases/download/v1.2.1/oci-service-broker-1.2.1.tgz
72+
https://github.com/oracle/oci-service-broker/releases/download/v1.3.0/oci-service-broker-1.3.0.tgz
7373
```
7474

7575
### OCI credentials
@@ -107,7 +107,7 @@ The value for `ociCredentials.secretName` should contain the name of the Kuberne
107107
For quickly testing out OCI Service Broker, TLS can be disabled and an embedded etcd container can be used. This can be used for quickly setting up the Broker but not recommended in PRODUCTION environments. Please refer to [Recommended Setup](#recommended-setup) for PRODUCTION environments
108108

109109
```bash
110-
helm install https://github.com/oracle/oci-service-broker/releases/download/v1.2.1/oci-service-broker-1.2.1.tgz --name oci-service-broker \
110+
helm install https://github.com/oracle/oci-service-broker/releases/download/v1.3.0/oci-service-broker-1.3.0.tgz --name oci-service-broker \
111111
--set ociCredentials.secretName=ocicredentials \
112112
--set storage.etcd.useEmbedded=true \
113113
--set tls.enabled=false
@@ -200,7 +200,7 @@ Please note that the names in keys i.e. keyStore.password and keyStore must not
200200

201201
Replace the values of --set arguments with your appropriate values to install the OCI Service Broker. User needs to point docker images either from OCIR or from their repository.
202202
```bash
203-
helm install https://github.com/oracle/oci-service-broker/releases/download/v1.2.1/oci-service-broker-1.2.1.tgz --name oci-service-broker \
203+
helm install https://github.com/oracle/oci-service-broker/releases/download/v1.3.0/oci-service-broker-1.3.0.tgz --name oci-service-broker \
204204
--set ociCredentials.secretName=ocicredentials \
205205
--set tls.secretName=certsecret \
206206
--set storage.etcd.servers=<comma separated list of etcd servers>
@@ -245,7 +245,7 @@ Refer [Restrict access to Service Catalog resources using RBAC](security.md#rest
245245
Sample files for various services are available under [`oci-service-broker/samples`](../samples) directory inside the charts. The below command extracts chart that contains the sample files.
246246

247247
```bash
248-
curl https://github.com/oracle/oci-service-broker/releases/download/v1.2.1/oci-service-broker-1.2.1.tgz | tar xz
248+
curl https://github.com/oracle/oci-service-broker/releases/download/v1.3.0/oci-service-broker-1.3.0.tgz | tar xz
249249
```
250250

251251
Create a `ClusterServiceBroker` resource with OCI Service Broker URL to register the broker. Use the below register yaml file after updating the namespace of the OCI Service Broker.

charts/oci-service-broker/samples/adw/adw-instance-plain.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ spec:
1717
storageSizeTBs: 1
1818
password: s123456789S@
1919
licenseType: NEW
20+
autoScaling: false
2021
freeFormTags:
2122
testtag: demo
2223
# definedTags:

charts/oci-service-broker/samples/adw/adw-instance.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ spec:
1616
cpuCount: 1
1717
storageSizeTBs: 1
1818
licenseType: new
19+
autoScaling: false
1920
freeFormTags:
2021
testtag: demo
2122
# definedTags:

charts/oci-service-broker/samples/atp/atp-instance-plain.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ spec:
1717
storageSizeTBs: 1
1818
password: s123456789S@
1919
licenseType: NEW
20+
autoScaling: false
2021
freeFormTags:
2122
testtag: demo
2223
# definedTags:

charts/oci-service-broker/samples/atp/atp-instance.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ spec:
1616
cpuCount: 1
1717
storageSizeTBs: 1
1818
licenseType: NEW
19+
autoScaling: false
1920
freeFormTags:
2021
testtag: demo
2122
# definedTags:

0 commit comments

Comments
 (0)