@catladder/pipeline
Version:
Panter workflow for cloud CI/CD and DevOps
34 lines (29 loc) • 677 B
text/typescript
import type { Config } from "../src";
const config = {
appName: "test-app",
customerName: "pan",
components: {
api: {
dir: "api",
build: {
type: "node",
},
deploy: {
type: "google-cloudrun",
projectId: "google-project-id",
region: "europe-west6",
service: {
// defaults to 512Mi
memory: "8Gi",
// increasing memory might also require increasing cpu limit
// see cloud run documentation for details
cpu: 2,
},
},
},
},
} satisfies Config;
export default config;
export const information = {
title: "Cloud Run: Memory Limit",
};