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

Added tip for make start to check troubleshooting page #1023

Merged
merged 4 commits into from
May 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions rsts/community/troubleshoot.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,19 @@ Here are a couple of techniques we believe would help you jump out of the pandor
Timed out while waiting for the Flyte deployment to start

You can run ``make teardown`` followed by the ``make start`` command.
- If the ``make start`` command isn't proceeding by any chance, check the pods' statuses -- run the command ``docker exec flyte-sandbox kubectl get po -A``.
- If you think a pod's crashing by any chance, describe the pod by running the command ``docker exec flyte-sandbox kubectl describe po <pod-name> -n flyte``. This gives a detailed overview of the pod's status.
- If Kubernetes reports a disk pressure issue:

- If the ``make start`` command isn't proceeding by any chance, check the pods' statuses by run this command

::

docker exec flyte-sandbox kubectl get po -A
- If you think a pod's crashing or getting evicted by any chance, describe the pod by running the command which gives detailed overview of pod's status

::

docker exec flyte-sandbox kubectl describe po <pod-name> -n flyte

- If Kubernetes reports a disk pressure issue: (node.kubernetes.io/disk-pressure)

- Check the memory stats of the docker container using the command ``docker exec flyte-sandbox df -h``.
- Prune the images and volumes.
Expand All @@ -38,4 +48,4 @@ Here are a couple of techniques we believe would help you jump out of the pandor
More coming soon. Stay tuned 👀


If the issue is still bugging you, contact us on `Slack <http://flyte-org.slack.com/>`__.
If the issue is still bugging you, contact us on `Slack <http://flyte-org.slack.com/>`__.
3 changes: 3 additions & 0 deletions rsts/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ Steps

make start

.. tip::
In case make start throws any error please refer to the troubleshooting guide here `Troubleshoot <https://docs.flyte.org/en/latest/community/troubleshoot.html>`__

3. Take a minute to explore Flyte Console through the provided URL.

.. image:: https://github.com/flyteorg/flyte/raw/static-resources/img/first-run-console-2.gif
Expand Down