-
Notifications
You must be signed in to change notification settings - Fork 32
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
docs(administration): add opensearch configuration documentation (#209) #209
base: master
Are you sure you want to change the base?
docs(administration): add opensearch configuration documentation (#209) #209
Conversation
0159f50
to
be2286b
Compare
be2286b
to
27c4f5a
Compare
27c4f5a
to
8702cc4
Compare
8702cc4
to
9025dbb
Compare
9025dbb
to
4d68793
Compare
4d68793
to
ff41e6d
Compare
ff41e6d
to
692ba88
Compare
692ba88
to
8f2a3f6
Compare
8f2a3f6
to
9840f2f
Compare
9840f2f
to
2ad5a7f
Compare
2ad5a7f
to
259562e
Compare
259562e
to
bdd9526
Compare
bdd9526
to
e4dcd21
Compare
## Internal OpenSearch deployment | ||
|
||
Even though not recommended, OpenSearch can also be deployed via the REANA Helm Chart. | ||
It is normally configured to have two users, `reana` and `fluentibit`, used by the respective services to access OpenSearch. |
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.
Typo: fluentibit
--> fluentbit
Even though not recommended, OpenSearch can also be deployed via the REANA Helm Chart. | ||
It is normally configured to have two users, `reana` and `fluentibit`, used by the respective services to access OpenSearch. | ||
|
||
For a standard REANA deployment, theseare the Helm values you need to configure: |
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.
Typo: theseare
--> these are
|
||
### Persistent storage | ||
|
||
There are multiple ways to configure persistent strage for OpenSearch. |
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.
Typo: strage
--> storage
Note that you can further customise OpenSearch's persistent volumes, for example by specifying the `size`, `labels` and `annotations`. For more details, see the [values of the OpenSearch Helm Chart](https://github.com/opensearch-project/helm-charts/blob/e43cf7dea1c01570971c70ff7d120b165bcfc28e/charts/opensearch/values.yaml#L197-L221). | ||
|
||
Alternatively, `PersistentVolumeClaim`s can be created for each node manually, but their names should be the same that would be generated by `volumeClaimTemplates`. In this way, `volumeClaimTemplates` will pick the existing volumes by their names and will not create new ones. | ||
in particular each claim should be named as `<clusterName|nameOverride|fullnameOverride>-<nodeGroup>-<clusterName|nameOverride|fullnameOverride>-<nodeGroup>-<N>`, where `N` is the number of an OpenSearch node. |
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.
in particular
--> In particular
Closes reanahub/reana#824
Add OpenSearch configuration documentation. Helm chart updated in reanahub/reana#827.