| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "name": "js-test-app1",
- "build": {
- "context": "./app",
- "method": "docker",
- "dockerfile": "Dockerfile",
- "builder": "heroku/buildpacks:20",
- "buildpacks": [
- "heroku/nodejs",
- "heroku/python"
- ]
- },
- "image": {
- "repository": "ghcr.io/porter-dev",
- "tag": "a-new-tag"
- },
- "envGroups": [
- {
- "name": "sponsor",
- "version": "9"
- },
- {
- "name": "2-230178",
- "version": "5"
- },
- {
- "name": "foo-group"
- }
- ],
- "helmOverrides": {},
- "serviceList": [
- {
- "run": "/cnb/lifecycle/launcher node index.js",
- "instances": 1,
- "port": 3000,
- "cpuCores": 0.19,
- "ramMegabytes": 400,
- "webConfig": {
- "autoscaling": {
- "minInstances": 1,
- "maxInstances": 10,
- "cpuThresholdPercent": 50,
- "memoryThresholdPercent": 50
- },
- "domains": [],
- "healthCheck": {
- "httpPath": "/healthz",
- "timeoutSeconds": 1,
- "initialDelaySeconds": 15
- },
- "private": false,
- "disableTls": false
- },
- "type": "SERVICE_TYPE_WEB",
- "smartOptimization": false,
- "runOptional": "/cnb/lifecycle/launcher node index.js",
- "name": "web",
- "instancesOptional": 1,
- "gpu": {},
- "terminationGracePeriodSeconds": 30
- }
- ]
- }
|