-
Notifications
You must be signed in to change notification settings - Fork 54
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
fix(helm): improve opensearch deployment #843
fix(helm): improve opensearch deployment #843
Conversation
fa1a9e8
to
3845e2e
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #843 +/- ##
==========================================
- Coverage 31.08% 31.06% -0.02%
==========================================
Files 26 26
Lines 2487 2488 +1
==========================================
Hits 773 773
- Misses 1714 1715 +1
|
Avoid re-defining the `REANA_OPENSEARCH_PASSWORD` environment variable multiple times in reana-workflow-controller.
cb81acc
to
3402412
Compare
…nahub#843) When deploying REANA locally, allow OpenSearch to access root-owned directory by setting `fsGroup` to zero. This is needed to access `hostPath` volumes when deploying reana with kind and Docker.
Avoid re-defining the `REANA_OPENSEARCH_PASSWORD` environment variable multiple times in reana-workflow-controller.
@@ -215,7 +215,7 @@ opensearch: | |||
cn: "reana.io" | |||
ttl: 365 | |||
cert: | |||
cn: "reana-opensearch-master.default.svc.cluster.local" |
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.
Cosmetics: s/opensearch/OpenSearch/
in the commit log.
@@ -162,6 +161,7 @@ This Helm automatically prefixes all names using the release name to avoid colli | |||
| `secrets.gitlab.REANA_GITLAB_OAUTH_APP_ID` | GitLab OAuth application id | None | | |||
| `secrets.gitlab.REANA_GITLAB_OAUTH_APP_SECRET` | **[Do not use in production, use secrets instead]** GitLab OAuth application secret | None | | |||
| `secrets.login` | **[Do not use in production, use secrets instead]** Third-party Keycloak identity provider consumer key and secret ([configuration details](https://docs.reana.io/administration/configuration/configuring-access/#keycloak-single-sign-on-configuration)) | `{}` | | |||
| `secrets.opensearch.password` | **[Do not use in production, use secrets instead]** OpenSearch password for Basic Authentication | None | |
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.
Cosmetics: redefining instead of "re-defining" in the commit log.
…nahub#843) When deploying REANA locally, allow OpenSearch to access root-owned directory by setting `fsGroup` to zero. This is needed to access `hostPath` volumes when deploying reana with kind and Docker.
Avoid redefining the `REANA_OPENSEARCH_PASSWORD` environment variable multiple times in reana-workflow-controller.
3402412
to
aad7dff
Compare
fsGroup
to zero for local opensearch deployment (fix(helm): improve opensearch deployment #843)