<@U06RKAMK0UC> How do I download the FlyteAdmin se...
# ask-ai
b
@ancient-wolf-19325 How do I download the FlyteAdmin service protobufs?
a
To download the FlyteAdmin service protobufs, you can follow these steps: 1. Clone the FlyteIDL Repository: The FlyteIDL repository contains the protobuf definitions for Flyte, including FlyteAdmin.
Copy code
git clone https://github.com/flyteorg/flyteidl.git
    cd flyteidl
2. Install Dependencies: Ensure Docker is installed locally and run the following command to install generator dependencies.
Copy code
make download_tooling
3. Generate the Protobufs: Run the following command to generate all the code, mock client, and documentation for the FlyteAdmin service.
Copy code
make generate
These steps will generate the necessary protobuf files for the FlyteAdmin service. Would you like more detail on any specific step? Sources: - FlyteIDL README 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.