You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The {{< full_app_ref >}} was specifically designed to run on infrastructure supporting microservices architecture, including [Kubernetes](https://kubernetes.io/). A [Helm](https://helm.sh/) Chart is provided to make the deployment easier.
@@ -73,11 +73,10 @@ The `global:` sections contains values that are shared across the chart and its
73
73
|-----|------|---------|-------------|
74
74
| global.api | object || Either provide the 'apiKey' directly or provide a secretName referring to an existing Secret containing the API key. |
75
75
| global.api.apiKey | string |`""`| Key formaking API calls to the server. Recommended to supply at command line or use the secretName to avoid storingin the values file. Example: "abcd1234opt5678"|
76
+
| global.api.secretKey | string |`"apiKey"`| Key name inside the Secret that contains the API key when secretName defined. |
76
77
| global.api.secretName | string |`""`| Name of the Secret that stores the API key. This allows you to keep the API key out of the values file and manage it securely via Secrets. Example: "optimizer-api-keys"|
77
-
| global.api.secretKey | string |`"api-key"`| Key name inside the Secret that contains the API key when secretName defined. |
78
78
| global.baseUrlPath | string |`"/"`| URL path appended to the host. Example: "/test" results in URLs like http://hostname/test/... |
79
-
| global.enableClient | bool |`true`| Deploy Web frontend client |
@@ -98,13 +97,20 @@ Configure the Oracle Database used by the {{< short_app_ref >}} API Server.
98
97
| Key | Type | Default | Description |
99
98
|-----|------|---------|-------------|
100
99
| server.database.type | string |`""`| Either SIDB-FREE, ADB-FREE, or ADB-S |
100
+
| server.database.image | object || For SIDB-FREE/ADB-FREE, location of the image and its tag; Exclude for ADB-S |
101
101
| server.database.image.repository | string |`""`| For SIDB-FREE/ADB-FREE, repository location of the image |
102
102
| server.database.image.tag | string |`"latest"`| For SIDB-FREE/ADB-FREE, tag of the image |
103
-
| server.database.ocid|string|`""`|For ADB-S, OCID of the Autonomous Database Exclude for SIDB-FREE/ADB-FREE|
103
+
| server.database.authN|Required||Application User Authentication/Connection Details If defined, used to create the user defined in the authN secret|
104
104
| server.database.authN.secretName | string |`"db-authn"`| Name of Secret containing the authentication/connection details |
105
105
| server.database.authN.usernameKey | string |`"username"`| Key in secretName containing the username |
106
106
| server.database.authN.passwordKey | string |`"password"`| Key in secretName containing the password |
107
107
| server.database.authN.serviceKey | string |`"service"`| Key in secretName containing the connection service name |
108
+
| server.database.privAuthN | Optional || Privileged User Authentication/Connection Details If defined, used to create the user defined in the authN secret |
| server.database.privAuthN.passwordKey | string |`"password"`| Key in secretName containing the password |
111
+
| server.database.oci_db | Optional || For ADB-S, OCID of the Autonomous Database Exclude for SIDB-FREE/ADB-FREE |
112
+
| server.database.oci_db.ocid | string |`""`| OCID of the DB |
113
+
108
114
109
115
###### Examples
110
116
@@ -119,28 +125,26 @@ A containerized single-instance Oracle Database:
119
125
tag: latest
120
126
```
121
127
122
-
**ADB-S**
123
-
124
-
A pre-deployed Oracle Autonomous Database (_requires_ the [OraOperator](https://github.com/oracle/oracle-database-operator) to be installed in the cluster):
A pre-deployed Oracle Autonomous Database (_requires_ the [OraOperator](https://github.com/oracle/oracle-database-operator) to be installed in the cluster):
142
+
134
143
```yaml
135
-
apiVersion: v1
136
-
kind: Secret
137
-
metadata:
138
-
name: db-authn
139
-
type: Opaque
140
-
stringData:
141
-
username: ADMIN
142
-
password: "my-secret-password"
143
-
service: "MYADB_TP"
144
+
database:
145
+
type: "ADB-S"
146
+
oci_db:
147
+
ocid: "ocid1.autonomousdatabase.oc1..."
144
148
```
145
149
146
150
##### Server Oracle Cloud Infrastructure Settings
@@ -312,8 +316,6 @@ Give the **Helm Chart** a spin using a locally installed [Kind](https://kind.sig
312
316
**OCI**: Remove the `server.oci_config` specification if skipping the above optional step.
313
317
314
318
```yaml
315
-
global:
316
-
enableOllama: true
317
319
server:
318
320
replicaCount: 1
319
321
image:
@@ -324,14 +326,13 @@ Give the **Helm Chart** a spin using a locally installed [Kind](https://kind.sig
0 commit comments