Skip to content
Open
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
4 changes: 2 additions & 2 deletions docs/source/reference/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
Advanced Configuration
======================

You can pass **optional configuration** to SkyPilot in the ``~/.sky/config.yaml`` file.
You can pass **optional configuration** to SkyPilot in the ``~/.sky/config.yaml`` file (local config) or on your SkyPilot API server dashboard (remote config) at ``http://<api-server-url>/dashboard/config``.

Configuration sources and overrides
-----------------------------------

SkyPilot allows you to set configuration globally in ``~/.sky/config.yaml``, in your project, or for specific jobs, providing flexibility in how you manage your configurations.
SkyPilot allows you to set configuration globally in ``~/.sky/config.yaml`` (local config) or on the API server dashboard (remote config) at ``http://<api-server-url>/dashboard/config``, in your project, or for specific jobs, providing flexibility in how you manage your configurations.

For example, you can have a :ref:`user configuration<config-client-user-config>` to apply globally to all projects, a :ref:`project configuration<config-client-project-config>` storing default values for all jobs in a project, and :ref:`Task YAML overrides<config-client-cli-flag>` for specific jobs.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ Your image must satisfy the following requirements:

Using images from private repositories
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
To use images from private repositories (e.g., Private DockerHub, Amazon ECR, Google Artifact Registry), create a `secret <https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/#create-a-secret-by-providing-credentials-on-the-command-line>`_ in your Kubernetes cluster and edit your :code:`~/.sky/config.yaml` to specify the secret like so:
To use images from private repositories (e.g., Private DockerHub, Amazon ECR, Google Artifact Registry), create a `secret <https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/#create-a-secret-by-providing-credentials-on-the-command-line>`_ in your Kubernetes cluster and edit your :ref:`SkyPilot config <config-yaml>` to specify the secret like so:

.. code-block:: yaml

Expand Down
Loading