feat: add custom title/description support for API/CLI deployments - Add optional title and description fields to deployment schemas - Update TRPC endpoints to accept custom deployment titles/descriptions - Update external API to support custom deployment metadata - Maintain backward compatibility with existing deployments - Resolves issue #1485: Allow setting title/description for deployments via API/CLI

This commit is contained in:
HarikrishnanD
2025-09-03 09:05:33 +05:30
parent f8ebf77575
commit 90d9880301
6 changed files with 89 additions and 15 deletions

View File

@@ -5,7 +5,7 @@ import { zValidator } from "@hono/zod-validator";
import { Inngest } from "inngest";
import { serve as serveInngest } from "inngest/hono";
import { logger } from "./logger.js";
import { type DeployJob, deployJobSchema } from "./schema.js";
import { type DeployJob, deployJobSchema, deployRequestSchema } from "./schema.js";
import { deploy } from "./utils.js";
const app = new Hono();
@@ -84,15 +84,22 @@ app.use(async (c, next) => {
return next();
});
app.post("/deploy", zValidator("json", deployJobSchema), async (c) => {
app.post("/deploy", zValidator("json", deployRequestSchema), async (c) => {
const data = c.req.valid("json");
logger.info("Received deployment request", data);
try {
// Transform the request to the internal job format
const jobData: DeployJob = {
...data,
titleLog: data.title || "Manual deployment",
descriptionLog: data.description || "",
};
// Send event to Inngest instead of adding to Redis queue
await inngest.send({
name: "deployment/requested",
data,
data: jobData,
});
logger.info("Deployment event sent to Inngest", {

View File

@@ -31,4 +31,35 @@ export const deployJobSchema = z.discriminatedUnion("applicationType", [
}),
]);
export const deployRequestSchema = z.discriminatedUnion("applicationType", [
z.object({
applicationId: z.string(),
title: z.string().optional(),
description: z.string().optional(),
server: z.boolean().optional(),
type: z.enum(["deploy", "redeploy"]),
applicationType: z.literal("application"),
serverId: z.string().min(1),
}),
z.object({
composeId: z.string(),
title: z.string().optional(),
description: z.string().optional(),
server: z.boolean().optional(),
type: z.enum(["deploy", "redeploy"]),
applicationType: z.literal("compose"),
serverId: z.string().min(1),
}),
z.object({
applicationId: z.string(),
previewDeploymentId: z.string(),
title: z.string().optional(),
description: z.string().optional(),
server: z.boolean().optional(),
type: z.enum(["deploy"]),
applicationType: z.literal("application-preview"),
serverId: z.string().min(1),
}),
]);
export type DeployJob = z.infer<typeof deployJobSchema>;