> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chronosphere.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Add files to a fleet

<Note>
  This feature isn't available to all Chronosphere Telemetry Pipeline users.
  For more information, contact [Chronosphere Support](/support).
</Note>

You can add a variety of files to a fleet, including [parsers](/ingest/pipeline/v2/build/parsers),
Lua scripts, and authentication tokens. After you add a file to a fleet, every agent
in that fleet updates its configuration settings and downloads the new file,
which lets those agents access the contents of that file.

To add files to a fleet, use one of the following methods:

<Tabs>
  <Tab title="Web interface" id="UI">
    1. Sign in to the [Telemetry Pipeline web interface](https://core.calyptia.com/).
    2. Open the project that contains the fleet that you want to add files to.
    3. Go to **Fleets**, then click the name of the fleet that you want to add a
       file to.
    4. Under **Attached File(s)**, click <Icon icon="file-plus-corner" /> **Attach New File**.
    5. Use one of these methods to upload a file:
       * Click **Select File** to choose a file from your device.
       * Enter a value in **File name** field and add content to the large text field to create
         a new file with that name and content.
    6. Click **Upload File**.
    7. To add multiple files, repeat steps 3 through 5 for each file.
  </Tab>

  <Tab title="Pipeline CLI" id="cli">
    In [Pipeline CLI](/ingest/pipeline/pipeline-cli), run the following command:

    ```shell /NAME/ /FILE/ theme={null}
    calyptia create fleet_file --fleet NAME --file FILE
    ```

    Replace the following:

    * *`NAME`*: The name of the fleet to add the file to.
    * *`FILE`*: The name of the file to add to your fleet.

    To add multiple files, repeat this command for each file.
  </Tab>
</Tabs>
