Skip to content
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

feat(helm): add live logs deployment (#827) #827

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

jlemesh
Copy link
Member

@jlemesh jlemesh commented Aug 26, 2024

Closes #824

OpenSearch

Optionally deploy OpenSearch alongside REANA (enabled: false by default).

In dev environment, deploy one instance with security features off (i. e. no TLS, no authn/authz)

In prod, also only one OpenSearch node is configured. To add more nodes, each of these nodes needs to have its own PersistentVolumeClaim and PersistentVolume as each node writes to a directory with the same name, but different contents - this will not work with current reana-shared-persistent-volume or reana-infrastructure-persistent-volume. It is possible to use volumeClaimTemplates with the StorageClass of choice (configured in OpenSearch Helm chart persistence.storageClass).

Volumes configuration tested with nfs-ganesha-server-and-external-provisioner/nfs-server-provisioner, for one and multiple nodes.

OpenSearch allows deploying nodes of different types, e. g. master and data. This configuration would not allow to do it, we need to add the second opensearch dependency, e. g. opensearch-master, and use the same Helm chart with different configuration. I think it is an overkill at this stage, as this is needed for bigger clusters.

TLS certificates for OpenSearch nodes are generated automatically by a Helm function, similar to how it is done for Ingress, but without automatic rotation on each helm upgrade. It is possible for a user to supply his own certificates, by putting them in a secret and mounting to an OpenSearch pod (in opensearch.secretMounts). Admin TLS certificates provide superadmin permissions to whoever uses them, and are stored in the same secret - there is no specific admin user.

Two users are configured - reana and fluentbit. Their passwords need to be prepared by first spinning up environment with Opensearch and running hash.sh script (described in docs):

./plugins/opensearch-security/tools/hash.sh -p somepassword

After getting the hashes for the passwords, they should be supplied to Helm with --set opensearch.customSecurityConfig.internalUsers.reana.hash='$So$Me$pASsWOrD.HasH' --set opensearch.customSecurityConfig.internalUsers.fluentbit.hash='$So$Me$pASsWOrD.HasH'.

Also enabled SSL cert reload, which allows updating SSL certs without restarting OpenSearch instance. Link to docs provided in the comments for those who will want to use it.

FluentBit

Optionally deploy FluentBit alongside REANA (enabled: false by default). Collects job and workflow logs with tail input plugin and pushes logs to OpenSearch. Allows configuring custom TLS certificates for OpenSearch connection.

reana-dev

The command breaks Helm configuration if it contains long (multiline) strings. PyYAML library first reads the YAML config file, converts multiline strings to one long string delimited with " and then wraps it while dumping, i. e.:

<...>
key: "value\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\n"\
"value\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\n"\
"value\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\nvalue\n"
<...>

If the string is used with Helm template values (tpl function), it adds whitespaces in places where \ was used, which results in malformed configuration for OpenSearch and FluentBit.

dump(width=100000) will add \ only if the string is longer than 100000 characters.

It also requires user to escape certain characters in YAML values like $ and \. PyYAML converts | strings to "" and Helm command is supplied with bad values.

To avoid errors when loading/dumping values.yaml file, skip its loading altogether as there is no need to load it explicitly as it is always loaded by Helm itself. In case releasehelm mode is used for reana-dev cluster-deploy, just use an empty dict for values and add overrides into it, values.yaml will be loaded by default by Helm.

How to test

Checkout reanahub/reana-workflow-controller#602 and reanahub/reana-job-controller#468 to retrieve live logs in REANA components. Checkout and install reanahub/reana-client#731 to watch live logs via CLI.

Dev setup

Deploy REANA as usual and run:

reana-dev run-example -c r-d-helloworld -w serial --submit-only
# forward opensearch port
curl -XGET "http://localhost:9200/fluentbit-job_log/_search" -H 'Content-Type: application/json' -d'
{
  "query": {
    "match": {
      "kubernetes.labels.job-name.keyword": "<reana run job ID>"
    }
  },
  "sort": [
    {
      "@timestamp": {
        "order": "desc"
      }
    }
  ]
}' | jq
reana-client logs --workflow helloworld-serial-kubernetes
reana-client logs --workflow helloworld-serial-kubernetes --follow --filter step=hello1

Prod setup

Deploy REANA as usual then run:

helm upgrade reana reana/helm/reana --wait --debug --force \
  --set components.reana_workflow_controller.image=docker.io/reanahub/reana-workflow-controller \
  --set opensearch.customSecurityConfig.internalUsers.reana.hash='$2y$12$e4RWvWxRW0QO8QtnDd.70eV/fJDJ2F7uUo2ox1P07bIpRArYDSUWK' \
  --set opensearch.customSecurityConfig.internalUsers.fluentbit.hash='$2y$12$e4RWvWxRW0QO8QtnDd.70eV/fJDJ2F7uUo2ox1P07bIpRArYDSUWK' \
  --set fluent-bit.outputConfig.httpPasswd='ReanaOS1=' \
  --set opensearch.enabled=true \
  --set fluent-bit.enabled=true \
  --set components.reana_workflow_controller.environment.REANA_OPENSEARCH_ENABLED=true \
  --set components.reana_workflow_controller.environment.REANA_OPENSEARCH_PASSWORD='ReanaOS1=' \
  --set components.reana_db.image=docker.io/library/postgres:14.10
reana-dev run-example -c r-d-helloworld -w serial --submit-only
# forward opensearch port
curl -u "reana:reana" --insecure -XGET "https://localhost:9200/fluentbit-job_log/_search" -H 'Content-Type: application/json' -d'
{
  "query": {
    "match": {
      "kubernetes.labels.job-name.keyword": "<reana run job ID>"
    }
  },
  "sort": [
    {
      "@timestamp": {
        "order": "desc"
      }
    }
  ]
}' | jq
reana-client logs --workflow helloworld-serial-kubernetes
reana-client logs --workflow helloworld-serial-kubernetes --follow --filter step=hello1

jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 27, 2024
@jlemesh jlemesh force-pushed the feature_add_opensearch_deployment branch from 17afbaa to c56a418 Compare August 27, 2024 06:36
Copy link

codecov bot commented Aug 27, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 31.08%. Comparing base (0c0849d) to head (7377233).

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #827      +/-   ##
==========================================
+ Coverage   29.80%   31.08%   +1.27%     
==========================================
  Files          26       26              
  Lines        2486     2487       +1     
==========================================
+ Hits          741      773      +32     
+ Misses       1745     1714      -31     
Files with missing lines Coverage Δ
reana/reana_dev/cluster.py 49.11% <100.00%> (+18.75%) ⬆️

jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 27, 2024
@jlemesh jlemesh force-pushed the feature_add_opensearch_deployment branch from c56a418 to ba8d585 Compare August 27, 2024 06:50
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 28, 2024
@jlemesh jlemesh force-pushed the feature_add_opensearch_deployment branch from ba8d585 to ea1fb45 Compare August 28, 2024 09:34
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 28, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 29, 2024
@jlemesh jlemesh force-pushed the feature_add_opensearch_deployment branch from a526d7d to c8239fb Compare August 29, 2024 05:56
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 29, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 30, 2024
@jlemesh jlemesh force-pushed the feature_add_opensearch_deployment branch from c8239fb to 5746bf0 Compare August 30, 2024 07:23
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 30, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 30, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 30, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 30, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 30, 2024
@jlemesh jlemesh force-pushed the feature_add_opensearch_deployment branch from 5746bf0 to 38da2a1 Compare August 30, 2024 07:27
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 30, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 30, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 30, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 30, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 30, 2024
@jlemesh jlemesh force-pushed the feature_add_opensearch_deployment branch from 38da2a1 to 657e739 Compare August 30, 2024 08:53
@jlemesh jlemesh changed the title feat(helm): add opensearch deployment (#827) feat(helm): add live logs deployment (#827) Aug 30, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 30, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Aug 30, 2024
@jlemesh jlemesh force-pushed the feature_add_opensearch_deployment branch from 657e739 to 2be0faf Compare August 30, 2024 14:22
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 9, 2024
@jlemesh jlemesh force-pushed the feature_add_opensearch_deployment branch from 4faf1f0 to a7b6a49 Compare October 9, 2024 09:12
reana/reana_dev/cluster.py Outdated Show resolved Hide resolved
helm/reana/values.yaml Outdated Show resolved Hide resolved
helm/configurations/values-dev.yaml Outdated Show resolved Hide resolved
helm/reana/templates/priority-classes.yaml Outdated Show resolved Hide resolved
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 14, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 14, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 14, 2024
@jlemesh jlemesh force-pushed the feature_add_opensearch_deployment branch from bb901b3 to 3f72a94 Compare October 14, 2024 08:15
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 14, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 14, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 14, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 14, 2024
@jlemesh jlemesh force-pushed the feature_add_opensearch_deployment branch from 3f72a94 to 62dd874 Compare October 14, 2024 08:28
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 14, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 14, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 14, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 14, 2024
@jlemesh jlemesh force-pushed the feature_add_opensearch_deployment branch from 62dd874 to 372f8cf Compare October 14, 2024 09:14
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 15, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 15, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 15, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 15, 2024
@jlemesh jlemesh force-pushed the feature_add_opensearch_deployment branch from 372f8cf to 52766e0 Compare October 15, 2024 08:12
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 15, 2024
jlemesh added a commit to jlemesh/reana that referenced this pull request Oct 15, 2024
@jlemesh jlemesh force-pushed the feature_add_opensearch_deployment branch from 52766e0 to 47e35de Compare October 15, 2024 12:48
@jlemesh jlemesh force-pushed the feature_add_opensearch_deployment branch from 47e35de to 7377233 Compare October 17, 2024 11:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

REANA job logs collection with FluentBit DaemonSet and OpenSearch
2 participants