@toa.io/extensions.origins 0.9.2 → 0.10.0-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -6
- package/readme.md +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toa.io/extensions.origins",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0-dev.0",
|
|
4
4
|
"description": "Toa Origins",
|
|
5
5
|
"author": "temich <tema.gurtovoy@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/toa-io/toa#readme",
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@toa.io/core": "1.0.
|
|
23
|
-
"@toa.io/generic": "0.
|
|
24
|
-
"@toa.io/schemas": "0.8.
|
|
25
|
-
"@toa.io/yaml": "0.7.
|
|
22
|
+
"@toa.io/core": "1.1.0-dev.0",
|
|
23
|
+
"@toa.io/generic": "0.11.0-dev.0",
|
|
24
|
+
"@toa.io/schemas": "0.8.4-dev.0",
|
|
25
|
+
"@toa.io/yaml": "0.7.6-dev.0",
|
|
26
26
|
"comq": "0.7.0",
|
|
27
27
|
"node-fetch": "2.6.7"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node-fetch": "2.6.2"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "44a59b3ec335a1be8655b543891767bae799dba1"
|
|
33
33
|
}
|
package/readme.md
CHANGED
|
@@ -118,13 +118,13 @@ Uses [ComQ](https://github.com/toa-io/comq), thus, provides interface of `comq.I
|
|
|
118
118
|
to `emit` and `request` methods.
|
|
119
119
|
|
|
120
120
|
AMQP origins can have credential secrets deployed. Secret's name must
|
|
121
|
-
follow `
|
|
121
|
+
follow `origins-{namespace}-{component}-{origin}` and it must have keys `username`
|
|
122
122
|
and `password`.
|
|
123
123
|
|
|
124
124
|
### Example
|
|
125
125
|
|
|
126
126
|
```shell
|
|
127
127
|
# deploy credentials to the current kubectl context
|
|
128
|
-
$ toa conceal
|
|
129
|
-
$ toa conceal
|
|
128
|
+
$ toa conceal origins-dummies-dummiy-messages username developer
|
|
129
|
+
$ toa conceal origins-dummies-dummiy-messages password secret
|
|
130
130
|
```
|