@toa.io/cli 0.20.0-dev.14 → 0.20.0-dev.16
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 +7 -7
- package/readme.md +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toa.io/cli",
|
|
3
|
-
"version": "0.20.0-dev.
|
|
3
|
+
"version": "0.20.0-dev.16",
|
|
4
4
|
"description": "Toa CLI",
|
|
5
5
|
"author": "temich <tema.gurtovoy@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/toa-io/toa#readme",
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
"@toa.io/runtime": "*"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@toa.io/console": "0.20.0-dev.
|
|
26
|
-
"@toa.io/generic": "0.20.0-dev.
|
|
27
|
-
"@toa.io/kubernetes": "0.20.0-dev.
|
|
28
|
-
"@toa.io/norm": "0.20.0-dev.
|
|
29
|
-
"@toa.io/yaml": "0.20.0-dev.
|
|
25
|
+
"@toa.io/console": "0.20.0-dev.17",
|
|
26
|
+
"@toa.io/generic": "0.20.0-dev.17",
|
|
27
|
+
"@toa.io/kubernetes": "0.20.0-dev.17",
|
|
28
|
+
"@toa.io/norm": "0.20.0-dev.17",
|
|
29
|
+
"@toa.io/yaml": "0.20.0-dev.17",
|
|
30
30
|
"dotenv": "16.1.1",
|
|
31
31
|
"find-up": "5.0.0",
|
|
32
32
|
"yargs": "17.6.2"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "cafb719d8e80d3e78a00904dc6ab6d6b0d5b568b"
|
|
35
35
|
}
|
package/readme.md
CHANGED
|
@@ -131,6 +131,7 @@ Deploy a generic Kubernetes secret with the prefix `toa-`.
|
|
|
131
131
|
<dd>
|
|
132
132
|
<code>secret</code> Secret name.<br/>
|
|
133
133
|
<code>key-values</code> List of keys and values of the secret as <code>key=value</code>.<br/>
|
|
134
|
+
<code>--namespace</code> Kubernetes namespace where the secret should be deployed.
|
|
134
135
|
</dd>
|
|
135
136
|
</dl>
|
|
136
137
|
|
|
@@ -161,12 +162,13 @@ Run interactive shell inside a disposable pod inside a Kubernetes cluster.
|
|
|
161
162
|
<code>toa shell [image]</code>
|
|
162
163
|
</dt>
|
|
163
164
|
<dd>
|
|
164
|
-
<code>image</code> Docker image<br/>
|
|
165
|
+
<code>image</code> Docker image to Run (default <code>alpine</code>).<br/>
|
|
165
166
|
</dd>
|
|
166
167
|
</dl>
|
|
167
168
|
|
|
168
|
-
|
|
169
|
+
#### Examples
|
|
169
170
|
|
|
170
171
|
```shell
|
|
171
|
-
$ toa shell
|
|
172
|
+
$ toa shell mongo
|
|
173
|
+
$ toa shell -- ping 1.1 # extra arguments can be passed
|
|
172
174
|
```
|