Manage Deployments

Deployments spin up the actual instances that run your inference services. They provide an endpoint that can be used by your applications to interact with your models.

Service Deployment Journey

Deployment creation is the fourth and final step in the service deployment journey. It requires that you know which Kuberentes namespace you want to deploy your service to.

graph LR;
    A(Set Up Registry) --> B(Add Registry);
    B --> C(Add Model);
    C --> D(Create Deployment);
    style A fill:#fff,stroke:#333,stroke-width:2px;
    style B fill:#fff,stroke:#333,stroke-width:2px;
    style C fill:#fff,stroke:#333,stroke-width:2px;
    style D fill:#7FF9E2,stroke:#333,stroke-width:4px;