feat: add cloudly app template
This commit is contained in:
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"id": "cloudly",
|
||||||
|
"name": "Cloudly",
|
||||||
|
"description": "Multi-node serve.zone control plane for clusters, workload services, domains, and deployments.",
|
||||||
|
"category": "Dev Tools",
|
||||||
|
"iconName": "server",
|
||||||
|
"latestVersion": "1.0.0",
|
||||||
|
"versions": ["1.0.0"],
|
||||||
|
"maintainer": "serve.zone",
|
||||||
|
"links": {
|
||||||
|
"Source": "https://code.foss.global/serve.zone/cloudly",
|
||||||
|
"Docs": "https://serve.zone"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"image": "code.foss.global/serve.zone/cloudly:latest",
|
||||||
|
"port": 80,
|
||||||
|
"envVars": [
|
||||||
|
{
|
||||||
|
"key": "SERVEZONE_ENVIRONMENT",
|
||||||
|
"value": "production",
|
||||||
|
"description": "Cloudly runtime environment.",
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "SERVEZONE_URL",
|
||||||
|
"value": "${SERVICE_DOMAIN}",
|
||||||
|
"description": "Public Cloudly hostname without protocol.",
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "SERVEZONE_PORT",
|
||||||
|
"value": "80",
|
||||||
|
"description": "Internal Cloudly HTTP port inside the container.",
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "SERVEZONE_SSLMODE",
|
||||||
|
"value": "external",
|
||||||
|
"description": "Use external TLS termination through Onebox or dcrouter.",
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "SERVEZONE_ADMINACCOUNT",
|
||||||
|
"value": "admin:change-me-now",
|
||||||
|
"description": "Initial admin account in username:password format.",
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "MONGODB_URL",
|
||||||
|
"value": "mongodb://${MONGODB_HOST}:${MONGODB_PORT}",
|
||||||
|
"description": "MongoDB server URL provisioned by Onebox.",
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "MONGODB_NAME",
|
||||||
|
"value": "${MONGODB_DATABASE}",
|
||||||
|
"description": "MongoDB database name provisioned by Onebox.",
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "MONGODB_USER",
|
||||||
|
"value": "${MONGODB_USERNAME}",
|
||||||
|
"description": "MongoDB username provisioned by Onebox.",
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "MONGODB_PASS",
|
||||||
|
"value": "${MONGODB_PASSWORD}",
|
||||||
|
"description": "MongoDB password provisioned by Onebox.",
|
||||||
|
"required": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"platformRequirements": {
|
||||||
|
"mongodb": true
|
||||||
|
},
|
||||||
|
"minOneboxVersion": "1.24.2"
|
||||||
|
}
|
||||||
@@ -110,6 +110,15 @@
|
|||||||
"latestVersion": "1.0.0",
|
"latestVersion": "1.0.0",
|
||||||
"tags": ["docker", "devtools"]
|
"tags": ["docker", "devtools"]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "cloudly",
|
||||||
|
"name": "Cloudly",
|
||||||
|
"description": "Multi-node serve.zone control plane for clusters, workload services, domains, and deployments.",
|
||||||
|
"category": "Dev Tools",
|
||||||
|
"iconName": "server",
|
||||||
|
"latestVersion": "1.0.0",
|
||||||
|
"tags": ["serve.zone", "control-plane", "clusters", "deployments"]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "redis",
|
"id": "redis",
|
||||||
"name": "Redis",
|
"name": "Redis",
|
||||||
|
|||||||
Reference in New Issue
Block a user