33 lines
646 B
JSON
33 lines
646 B
JSON
{
|
|
"namespace": "default",
|
|
"environments": {
|
|
"${PROJECT_NAME}-py": {
|
|
"image": "ghcr.io/fission/python-env:3.11",
|
|
"builder": "ghcr.io/fission/python-builder:3.11",
|
|
"mincpu": 100,
|
|
"maxcpu": 200,
|
|
"minmemory": 128,
|
|
"maxmemory": 256,
|
|
"poolsize": 1
|
|
}
|
|
},
|
|
"secrets": {
|
|
"fission-${PROJECT_NAME}-env": {
|
|
"literals": [
|
|
"PG_HOST=localhost",
|
|
"PG_PORT=5432",
|
|
"PG_DB=testdb",
|
|
"PG_USER=postgres",
|
|
"PG_PASS=test"
|
|
]
|
|
}
|
|
},
|
|
"configmaps": {
|
|
"fission-${PROJECT_NAME}-config": {
|
|
"literals": [
|
|
"LOG_LEVEL=DEBUG"
|
|
]
|
|
}
|
|
}
|
|
}
|