ref: up
This commit is contained in:
32
fission-python/template/.fission/local-deployment.json
Normal file
32
fission-python/template/.fission/local-deployment.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user