Manage Registries #
Registries are the storage locations for your models and deployments. Any storage solution that supports the S3 protocol can be used as a registry. Once added, you can use the models to create a service and deploy it for inferencing.
Service Deployment Journey #
Registry setup and creation are the first two steps in the service deployment journey. It requires that you have already set up a compatible storage solution and configured any necessary policy permissions for the platform to access it.
graph LR; A(Set Up Registry) --> B(Add Registry); B --> C(Add Model); C --> D(Create Deployment); style A fill:#7FF9E2,stroke:#333,stroke-width:4px; style B fill:#7FF9E2,stroke:#333,stroke-width:4px; style C fill:#fff,stroke:#333,stroke-width:2px; style D fill:#fff,stroke:#333,stroke-width:2px;