soa.json for type=daemon
{ "type": "daemon", "subType": "cronJob", "name": "damonss", "group": "damongroup", "description": "This is the decryption of your daemon", "tags": ["tag1", "tag2"], "attributes": { "att1": ["att1.1", "att1.2"], "att2": ["att2.1", "att2.2"] }, "program": ["soajs"], "tab": { "main": "kubernetes cronjob", "sub": "Subtype Daemon" }, "documentation": { "readme": "/doc/markupfile", "release": "/doc/markupfile" }, "port": 4100, "version": "1", "extKeyRequired": true, "oauth": true, "urac": true, "urac_Profile": true, "urac_ACL": false, "tenant_Profile": false, "provision_ACL": false, "requestTimeout": 30, "requestTimeoutRenewal": 5, "maintenance": { "port": { "type": "inherit" }, "readiness": "/heartbeat" }, "prerequisites": { "cpu": " ", "memory": " " } }
Variable | Required | description | example |
---|---|---|---|
UI meta data | |||
type | Yes | The following type are supported: static, service, daemon, multi, custom (anything else) | if not set the default type will be custom. |
subtype | |||
tab | |||
name | Yes | The name of the daemon has to be unique and not been used by other daemons at the API catalog. | If the repoName is : xx.pay.merchant-daemon |
group | Yes | The group of the daemon, make sure you set the right group to properly display the daemon under the right group at the daemon catalog. | The daemon Group should reflect the system the service belongs to "Payment" |
description | No | The daemon description to appear in the daemon catalog UI | "This is a string" |
Search meta data | |||
tags | |||
attributes | |||
program | |||
Documentation meta data | |||
documentation | |||
Type meta data | |||
swaggerFilename | No | The location of the service swagger file from the repository root. if not set soajs will look for swagger.yml or swagger.json at the root folder. | "/doc/swagger.yml" |
port | Yes | The port of the daemon. make sure it is unique and not being used by any other daemon at the API catalog. | 4100 |
version | Yes | The version of the daemon. make sure it has the following syntax: a string of /[0-9]+(.[0-9]+)?/ | "1" or "1.1" |
extKeyRequired | No | To turn on multi tenancy you need to have extKeyRequired set to true | default value is true |
oauth | No | To turn on oauth security for this daemon. | default is false soajs supports 2 types of oAuth
soajs empowers you to turn on oAuth at many different levels
|
urac | No | To add to the request header the logged in user information | This is supper useful when soajs gateway proxy the request to your service and you need to know who is the logged in user. default is false |
urac_Profile | No | To add to the request header the logged in user profile information | default is false |
urac_ACL | No | To add to the request header the logged in user ACL information | default is false |
tenant_profile | No | ||
provision_ACL | No | To add to the request header the tenant ACL information | default is false |
requestTimeout | No | The request lifetime | default is 30 |
requestTimeoutRenewal | No | How many times to renew the request lifetime | default is 5 |
maintenance | Yes | The heartbeat route to probe the health status of the service. | example { "port": { "type": "inherit" }, "readiness": "/heartbeat", "commands": [ {"label": "reload", "path": "/reload", "icon": "provision"} ] } |
prerequisites |
Maintenance Icon
For maintenance SOAJS is using font awesome, checkout the available icons at https://fontawesome.com/icons?d=gallery
For example, if you choose the wrench icon as follows :
example { "port": { "type": "inherit" }, "readiness": "/heartbeat", "commands": [ {"label": "My Command", "path": "/mypath", "icon": "wrench"} ] } |
---|
Add Comment