-
Notifications
You must be signed in to change notification settings - Fork 53
oracle doc #816
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
Open
Bonusree
wants to merge
15
commits into
master
Choose a base branch
from
add-oracle
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
oracle doc #816
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
ac3024c
started oracle
Bonusree 2cd42e9
oracle doc is started
Bonusree 049bd8e
readme.md added
Bonusree 125c66a
readme is ready
Bonusree 6e209c1
concepts of oracle
Bonusree 3324ba9
oracle failover initiate
Bonusree 923fe26
dataguard yaml
Bonusree 79aa242
oracle failover
Bonusree 2ffd362
url fix
Bonusree 0ea2e9f
url changed
Bonusree f1c94d0
fixede url
Bonusree d13c4c7
oracle
Bonusree c7f9558
review and some error fix
Bonusree 9c76f8a
kubectl spelling fix
Bonusree f033d67
image added
Bonusree File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,85 @@ | ||
| apiVersion: kubedb.com/v1alpha2 | ||
| kind: Oracle | ||
| metadata: | ||
| name: oracle-sample | ||
| namespace: demo | ||
| spec: | ||
| dataGuard: | ||
| applyLagThreshold: 0 | ||
| fastStartFailover: | ||
| fastStartFailoverThreshold: 15 | ||
| observer: | ||
| podTemplate: | ||
| spec: | ||
| containers: | ||
| - name: observer | ||
| resources: | ||
| limits: | ||
| cpu: "1" | ||
| memory: 2Gi | ||
| requests: | ||
| cpu: 500m | ||
| memory: 2Gi | ||
| initContainers: | ||
| - name: observer-init | ||
| resources: | ||
| limits: | ||
| memory: 512Mi | ||
| requests: | ||
| cpu: 200m | ||
| memory: 256Mi | ||
| podPlacementPolicy: | ||
| name: default | ||
| storage: | ||
| resources: | ||
| requests: | ||
| storage: 1Gi | ||
| protectionMode: MaximumProtection | ||
| standbyType: PHYSICAL | ||
| syncMode: SYNC | ||
| transportLagThreshold: 0 | ||
| deletionPolicy: Delete | ||
| edition: enterprise | ||
| mode: DataGuard | ||
| podTemplate: | ||
| spec: | ||
| containers: | ||
| - name: oracle | ||
| resources: | ||
| limits: | ||
| cpu: "4" | ||
| memory: 10Gi | ||
| requests: | ||
| cpu: "1500m" | ||
| memory: 4Gi | ||
| - name: oracle-coordinator | ||
| resources: | ||
| limits: | ||
| memory: 256Mi | ||
| requests: | ||
| cpu: 200m | ||
| memory: 256Mi | ||
| initContainers: | ||
| - name: oracle-init | ||
| resources: | ||
| limits: | ||
| memory: 512Mi | ||
| requests: | ||
| cpu: 200m | ||
| memory: 256Mi | ||
| podPlacementPolicy: | ||
| name: default | ||
| securityContext: | ||
| fsGroup: 54321 | ||
| runAsGroup: 54321 | ||
| runAsUser: 54321 | ||
| serviceAccountName: oracle-sample | ||
| replicas: 3 | ||
| storage: | ||
| accessModes: | ||
| - ReadWriteOnce | ||
| resources: | ||
| requests: | ||
| storage: 30Gi | ||
| storageType: Durable | ||
| version: 21.3.0 |
This file contains hidden or 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,41 @@ | ||
| apiVersion: kubedb.com/v1alpha2 | ||
| kind: Oracle | ||
| metadata: | ||
| name: oracle | ||
| namespace: demo | ||
| spec: | ||
| deletionPolicy: Delete | ||
| edition: enterprise | ||
| mode: Standalone | ||
| podTemplate: | ||
| spec: | ||
| containers: | ||
| - name: oracle | ||
| resources: | ||
| limits: | ||
| cpu: "4" | ||
| memory: 10Gi | ||
| requests: | ||
| cpu: "2" | ||
| memory: 3Gi | ||
| initContainers: | ||
| - name: oracle-init | ||
| resources: | ||
| limits: | ||
| memory: 512Mi | ||
| requests: | ||
| cpu: 200m | ||
| memory: 256Mi | ||
| securityContext: | ||
| fsGroup: 54321 | ||
| runAsGroup: 54321 | ||
| runAsUser: 54321 | ||
| replicas: 1 | ||
| storage: | ||
| accessModes: | ||
| - ReadWriteOnce | ||
| resources: | ||
| requests: | ||
| storage: 30Gi | ||
| storageType: Durable | ||
| version: 21.3.0 |
This file contains hidden or 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 hidden or 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,41 @@ | ||
| --- | ||
| title: Oracle | ||
| menu: | ||
| docs_{{ .version }}: | ||
| identifier: oracle-readme | ||
| name: Oracle | ||
| parent: guides-oracle | ||
| weight: 10 | ||
| menu_name: docs_{{ .version }} | ||
| section_menu_id: guides | ||
| url: /docs/{{ .version }}/guides/oracle/ | ||
| aliases: | ||
| - /docs/{{ .version }}/guides/oracle/README/ | ||
| --- | ||
|
|
||
| > New to KubeDB? Please start [here](/docs/README.md). | ||
|
|
||
| ## Supported Oracle Features | ||
|
|
||
| | Features | Availability | | ||
| |------------------------------------|:------------:| | ||
| | Clustering | ✓ | | ||
| | Data Guard | ✓ | | ||
| | Synchronous Replication | ✓ | | ||
| | Streaming Replication | ✓ | | ||
| | Automatic Failover | ✓ | | ||
| | Persistent Volume | ✓ | | ||
| | Initialization using Script | ✓ | | ||
| | Using Custom docker image | ✓ | | ||
|
|
||
| ## Life Cycle of a Oracle Object | ||
|
|
||
| <p align="center"> | ||
| <img alt="lifecycle" src="/docs/images/oracle/oracle_lifecycle.png"> | ||
| </p> | ||
|
|
||
| ## User Guide | ||
|
|
||
| - [Quickstart Oracle](/docs/guides/oracle/quickstart/guide.md) with KubeDB Operator. | ||
|
|
||
|
|
||
This file contains hidden or 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,10 @@ | ||
| --- | ||
| title: Oracle | ||
| menu: | ||
| docs_{{ .version }}: | ||
| identifier: guides-oracle | ||
| name: Oracle | ||
| parent: guides | ||
| weight: 11 | ||
| menu_name: docs_{{ .version }} | ||
| --- |
This file contains hidden or 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,11 @@ | ||
| --- | ||
| title: Oracle Concepts | ||
| menu: | ||
| docs_{{ .version }}: | ||
| identifier: guides-oracle-concepts | ||
| name: Concepts | ||
| parent: guides-oracle | ||
| weight: 25 | ||
| menu_name: docs_{{ .version }} | ||
| section_menu_id: guides | ||
| --- |
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.
Uh oh!
There was an error while loading. Please reload this page.