@catladder/pipeline
Version:
Panter workflow for cloud CI/CD and DevOps
39 lines (35 loc) • 796 B
text/typescript
import type { Config } from "../src";
const config = {
appName: "test-app",
customerName: "pan",
components: {
www: {
dir: "www",
build: {
type: "node",
},
deploy: {
type: "google-cloudrun",
projectId: "google-project-id",
region: "europe-west6",
service: {
healthCheck: {
livenessProbe: false,
startupProbe: {
type: "http1",
failureThreshold: 43,
initialDelaySeconds: 4,
path: "/something2",
periodSeconds: 5,
timeoutSeconds: 6,
},
},
},
},
},
},
} satisfies Config;
export default config;
export const information = {
title: "Cloud Run: Health Check",
};