Skip to content

Commit

Permalink
Fix YAML indentation for sandbox config (#4385)
Browse files Browse the repository at this point in the history
Signed-off-by: davidmirror-ops <[email protected]>
  • Loading branch information
davidmirror-ops authored Nov 10, 2023
1 parent 7712626 commit 48f53f0
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions rsts/deployment/deployment/sandbox.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,35 @@ who wish to dig deeper into the storage layer.
🐋 Flyte sandbox ships with a Docker registry. Tag and push custom workflow images to localhost:30000
📂 The Minio API is hosted on localhost:30002. Use http://localhost:30080/minio/login for Minio console
Configuration
______________

The ``config-sandbox.yaml`` file contains configuration for **FlyteAdmin**,
which is the Flyte cluster backend component that processes all client requests
such as workflow executions. The default values are enough to let you connect and use Flyte:


.. code-block:: yaml
admin:
# For GRPC endpoints you might want to use dns:///flyte.myexample.com
endpoint: localhost:30080
authType: Pkce
insecure: true
console:
endpoint: http://localhost:30080
logger:
show-source: true
level: 0
.. note::

You can also create your own config file with `flytectl config init`, which
will create a config file at `~/.flyte/config.yaml`.

Learn more about the configuration settings in the
{ref}`Deployment Guide <flyte:flyteadmin-config-specification>`


Now that you have the sandbox cluster running, you can now go to the :ref:`User Guide <cookbook:userguide>` or
:ref:`Tutorials <cookbook:tutorials>` to run tasks and workflows written in ``flytekit``, the Python SDK for Flyte.

0 comments on commit 48f53f0

Please sign in to comment.