Skip to content

Commit 42a0e45

Browse files
BonusreeArnobKumarSaha
authored andcommitted
url fix
Signed-off-by: Bonusree <[email protected]>
1 parent b79fc2f commit 42a0e45

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

docs/guides/oracle/concepts/oracle.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,11 @@ spec:
8787
memory: 3Gi
8888
deletionPolicy: Delete
8989
```
90+
```shell
91+
$ kubectl create -f https://github.com/kubedb/docs/raw/{{< param "info.version" >}}/docs/examples/oracle/quickstart/standalone.yaml
92+
oracle.kubedb.com/oracle created
9093

94+
```
9195
#### 2. DataGuard Mode Configuration
9296

9397
```yaml

docs/guides/oracle/failover/overview.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,11 @@ Apply the manifest:
157157
$ kubectl apply -f oracle-dataguard.yaml
158158
```
159159

160+
```shell
161+
$ kubectl create -f https://github.com/kubedb/docs/raw/{{< param "info.version" >}}/docs/examples/oracle/dataguard/dataguard.yaml
162+
oracle.kubedb.com/oracle created
163+
164+
```
160165
Monitor status until all pods are ready:
161166

162167
```bash

docs/guides/oracle/quickstart/guide.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ section_menu_id: guides
1717

1818
This tutorial will show you how to use KubeDB to run an Oracle database.
1919

20-
<p align="center">   <img alt="lifecycle" src="/docs/guides/oracle/quickstart/Monitoring.png"> </p>
20+
<p align="center">   <img alt="lifecycle" src="/guides/oracle/quickstart/Monitoring.png"> </p>
2121

2222
>Note: The YAML files used in this tutorial are stored in [docs/examples/oracle/quickstart](https://github.com/kubedb/docs/tree/{{
23-
< param "info.version" >}}/docs/examples/oracle/quickstart/yamls) folder in the GitHub repository kubedb/docs
23+
< param "info.version" >}}/docs/examples/oracle/quickstart) folder in the GitHub repository kubedb/docs
2424
.
2525

2626
## Before You Begin
@@ -101,7 +101,7 @@ spec:
101101
version: 21.3.0
102102
```
103103
```shell
104-
$ kubectl create -f https://github.com/kubedb/docs/raw/{{< param "info.version" >}}/docs/guides/oracle/quickstart/yamls/oracle-quickstart.yaml
104+
$ kubectl create -f https://github.com/kubedb/docs/raw/{{< param "info.version" >}}/docs/examples/oracle/quickstart/standalone.yaml
105105
oracle.kubedb.com/oracle created
106106

107107
```
@@ -275,7 +275,7 @@ service/oracle-pods ClusterIP None <none> 1521/TCP 109m
275275

276276
## Connect to Oracle Database
277277
```shell
278-
kubectl exec -it -n demo oracle-0 -- bash
278+
$ kubectl exec -it -n demo oracle-0 -- bash
279279
Defaulted container "oracle" out of: oracle, oracle-init (init)
280280
bash-4.2$ sqlplus / as sysdba
281281

@@ -298,7 +298,7 @@ Version 21.3.0.0.0
298298
To clean up the Kubernetes resources created by this tutorial, run:
299299

300300
```bash
301-
kubectl patch -n demo oracle/oracle -p '{"spec":{"deletionPolicy":"WipeOut"}}' --type="merge"
302-
kubectl delete oracle -n demo oracle
303-
kubectl delete ns demo
301+
$ kubectl patch -n demo oracle/oracle -p '{"spec":{"deletionPolicy":"WipeOut"}}' --type="merge"
302+
$ kubectl delete oracle -n demo oracle
303+
$ kubectl delete ns demo
304304
```

0 commit comments

Comments
 (0)