-
Notifications
You must be signed in to change notification settings - Fork 61
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
Prepare docs for 0.8.0-beta.2 #183
Conversation
docs/guides/elasticsearch/README.md
Outdated
|
||
## Elasticsearch versions supported by KubeDB | ||
|
||
| KubeDB Version | Elasticsearch:2.3 | Elasticsearch:5.6 | | ||
|----------------|:------------:|:------------:| | ||
| 0.1.0 - 0.7.0 | ✓ | ✗ | | ||
| 0.8.0-beta.0 | ✗ | ✓ | | ||
| 0.8.0-beta.1 | ✗ | ✓ | | ||
| 0.8.0-beta.2 | ✗ | ✓ | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove one
@@ -19,7 +19,7 @@ You have to push the required images from KubeDB's [Docker hub account](https:// | |||
```console | |||
$ export DOCKER_REGISTRY=<your-registry> | |||
|
|||
$ docker pull kubedb/operator:0.8.0-beta.0-4 ; docker tag kubedb/operator:0.8.0-beta.0-4 $DOCKER_REGISTRY/operator:0.8.0-beta.0-4 ; docker push $DOCKER_REGISTRY/operator:0.8.0-beta.0-4 | |||
$ docker pull kubedb/operator:0.8.0-beta.2-4 ; docker tag kubedb/operator:0.8.0-beta.2-4 $DOCKER_REGISTRY/operator:0.8.0-beta.2-4 ; docker push $DOCKER_REGISTRY/operator:0.8.0-beta.2-4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use kubedb/operator:0.8.0-beta.2
@@ -98,7 +98,7 @@ Now run the command to create this Postgres object: | |||
|
|||
```console | |||
$ kubedb create -f https://raw.githubusercontent.com/kubedb/cli/master/docs/examples/postgres/private-registry/pvt-reg-postgres.yaml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
which branch to use? master
? 0.8.0-beta.2
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to use 0.8.0-beta.2
branch.
@@ -24,7 +24,7 @@ Standby servers can be either *warm standby* or *hot standby* server. | |||
A standby server that cannot be connected to until it is promoted to a *master* server is called a *warm standby* server. | |||
*Standby* servers are by default *warm standby* unless we make them *hot standby*. | |||
|
|||
The following is an example of a Postgres which creates PostgreSQL cluster of three servers. | |||
The following is an example of a PostgreSQL which creates PostgreSQL cluster of three servers. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sometimes, Postgres word means CRD Postgres, not PostgreSQL
@@ -123,7 +123,7 @@ spec: | |||
# bucket: kubedb | |||
``` | |||
|
|||
## Update Postgres to enable periodic backups | |||
## Update PostgreSQL to enable periodic backups |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
like here. Update CRD Postgres
@@ -334,7 +334,7 @@ spec: | |||
resume: true | |||
``` | |||
|
|||
KubeDB operator will notice that `spec.resume` is set to `true`. It will delete the DormantDatabase object and create a new Postgres using `spec.origin` from DormantDatabase. | |||
KubeDB operator will notice that `spec.resume` is set to `true`. It will delete the DormantDatabase object and create a new PostgreSQL using `spec.origin` from DormantDatabase. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
most of the cases, Postgres refers to CRD Postgres.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When it means CRD, we should use Postgres
. When it means database, PostgreSQL
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. I have used like this. may be somewhere it is missed
No description provided.