Skip to content

Commit

Permalink
Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
bpblanken committed Oct 16, 2024
1 parent ee366a3 commit 4321172
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ The Kubernetes ecosystem contains many standardized and custom solutions across

Install the four required kubernetes infrastructure components:
1. The [`docker`](https://docs.docker.com/engine/install/) container engine.
- If running `Docker Desktop` on a laptop, make sure to set your CPU and Memory limits under Settings > Resources > Advanced.
1. The [`kubectl`](https://kubernetes.io/docs/tasks/tools/) command line client.
1. The [`kind`](https://kind.sigs.k8s.io/docs/user/quick-start/#installation) local cluster manager.
1. The [`helm`](https://helm.sh/docs/intro/install/) package manager.
Expand Down Expand Up @@ -73,6 +74,7 @@ Once services are healthy, you may create a seqr Admin user using the pod name f

```
kubectl exec seqr-68d7b855fb-bjppn -c seqr -it -- bash
python3 /seqr/manage.py createsuperuser
```

## Required Secrets
Expand Down Expand Up @@ -145,3 +147,13 @@ You may access the size of each of the on-disk components with:
```
du -sh /var/seqr/*
```
- How do I tail logs?
To tail the logs of the pipeline worker, for example:
```
kubectl get pods -o name | grep pipeline-runner-api
pipeline-runner-api-5557bbc7-vrtcj
kubectl logs pipeline-runner-api-5557bbc7-vrtcj -c pipeline-runner-api-sidecar
2024-10-16 18:24:27 - pipeline_worker - INFO - Waiting for work
2024-10-16 18:24:28 - pipeline_worker - INFO - Waiting for work
2024-10-16 18:24:29 - pipeline_worker - INFO - Waiting for work
```

0 comments on commit 4321172

Please sign in to comment.