R
RunPod•2mo ago
pkpio

Setting up CD for serverless endpoint

I tried the GitHub integration but our Docker image base is a private image so the build system needs to support using credentials I also tried the Docker image approach - this works great for our pre-built images but how can I setup CD for this?
10 Replies
Jason
Jason•2mo ago
CD like what process?
Jason
Jason•2mo ago
You can send a request to runpod's graphql to change template's container image slot
No description
Jason
Jason•2mo ago
then the serverless endpoint will sync up to the new template ( new image tag ), side note: dont use the same tag too
pkpio
pkpioOP•2mo ago
Which graphql mutation should I look at?
pkpio
pkpioOP•2mo ago
I looked here before but didn't find any function exposed to update endpoints or templates.
No description
pkpio
pkpioOP•2mo ago
CD as in Continuous Delivery. When new version of the image is pushed to the registry, how can I programmatically tell runpod update our template or endpoint? Manage to find the endpoint through browser network inspection. Not the best since this is an undocumented (likely internal api).
Jason
Jason•2mo ago
It is not documented I think but yes you can use it too since it's a graphql api
Eren
Eren•2mo ago
Yes it is not well documented, you can go ahead to web UI and view Network tab requests The request got triggered when clicking New Release -> Save the request you need, you can copy it via CURL, remove headers and put api key, then you will be changin imageName there when you want to release a new image This updates Template image that endpoint uses it's the one with mutation saveTemplate($input: SaveTemplateInput) {
flash-singh
flash-singh•2mo ago
ill get team to add this to docs
pkpio
pkpioOP•2mo ago
This is what I ended up doing. Thank you 🙂

Did you find this page helpful?