mirror of
https://github.com/fluencelabs/registry.git
synced 2025-04-24 17:52:14 +00:00
* feat(tests): Run tests using fluence cli [DXJ-225] * fix: remove .fluence from .gitignore * Update example/fluence.yaml Co-authored-by: Aleksey Proshutisnkiy <justprosh@users.noreply.github.com> * fix: update tests * fix: fix tests * fix: set default key * chore: update aqua to 0.9.2 in fluence.yml of aqua-tests Co-authored-by: Aleksey Proshutisnkiy <justprosh@users.noreply.github.com> Co-authored-by: folex <0xdxdy@gmail.com> Co-authored-by: shamsartem
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"$id": "https://fluence.dev/schemas/project-secrets.yaml",
|
|
"title": "project-secrets.yaml",
|
|
"type": "object",
|
|
"description": "Defines project's secret keys that are used only in the scope of this particular Fluence project. You can manage project's keys using commands from `fluence key` group of commands",
|
|
"properties": {
|
|
"keyPairs": {
|
|
"title": "Key Pairs",
|
|
"description": "Key Pairs available for the particular project",
|
|
"type": "array",
|
|
"items": {
|
|
"title": "Key Pair",
|
|
"type": "object",
|
|
"properties": {
|
|
"peerId": {
|
|
"type": "string"
|
|
},
|
|
"secretKey": {
|
|
"type": "string"
|
|
},
|
|
"publicKey": {
|
|
"type": "string"
|
|
},
|
|
"name": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"peerId",
|
|
"secretKey",
|
|
"publicKey",
|
|
"name"
|
|
]
|
|
}
|
|
},
|
|
"defaultKeyPairName": {
|
|
"type": "string",
|
|
"nullable": true,
|
|
"description": "Key pair with this name will be used for the deployment by default. You can override it with flags or by using keyPair properties in fluence.yaml"
|
|
},
|
|
"version": {
|
|
"type": "number",
|
|
"const": 0
|
|
}
|
|
},
|
|
"required": [
|
|
"version",
|
|
"keyPairs"
|
|
]
|
|
}
|