Update Kubernetes configs for playwright-service, api, and worker

Added new ConfigMap for playwright-service and adjusted existing references.
Applied imagePullPolicy: Always to ensure all images are updated promptly.
Updated README to include --no-cache for Docker build instructions.
This commit is contained in:
Jakob Stadlhuber
2024-07-24 18:54:16 +02:00
parent 497aa5d25e
commit be9e7f9edf
4 changed files with 34 additions and 3 deletions
+5
View File
@@ -7,6 +7,8 @@ import { crawlJobStatusPreviewController } from "../../src/controllers/status";
import { searchController } from "../../src/controllers/search";
import { crawlCancelController } from "../../src/controllers/crawl-cancel";
import { keyAuthController } from "../../src/controllers/keyAuth";
import {livenessController} from "../controllers/liveness";
import {readinessController} from "../controllers/readiness";
export const v0Router = express.Router();
@@ -23,3 +25,6 @@ v0Router.get("/v0/keyAuth", keyAuthController);
// Search routes
v0Router.post("/v0/search", searchController);
// Health/Probe routes
v0Router.get("/v0/health/liveness", livenessController);
v0Router.get("/v0/health/readiness", readinessController);