@toa.io/cli 1.1.0-dev.11 → 1.1.0-dev.12
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 +4 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toa.io/cli",
|
|
3
|
-
"version": "1.1.0-dev.
|
|
3
|
+
"version": "1.1.0-dev.12",
|
|
4
4
|
"description": "Toa CLI",
|
|
5
5
|
"author": "temich <tema.gurtovoy@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/toa-io/toa#readme",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@toa.io/console": "0.6.0",
|
|
26
|
-
"@toa.io/generic": "0.11.0-dev.
|
|
27
|
-
"@toa.io/kubernetes": "0.7.5-dev.
|
|
28
|
-
"@toa.io/norm": "1.0.2-dev.
|
|
29
|
-
"@toa.io/yaml": "0.7.6-dev.
|
|
26
|
+
"@toa.io/generic": "0.11.0-dev.12",
|
|
27
|
+
"@toa.io/kubernetes": "0.7.5-dev.12",
|
|
28
|
+
"@toa.io/norm": "1.0.2-dev.12",
|
|
29
|
+
"@toa.io/yaml": "0.7.6-dev.12",
|
|
30
30
|
"find-up": "5.0.0",
|
|
31
31
|
"yargs": "17.6.2"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "e80500549e76c0e35407a4b3af5a5a38a4e33686"
|
|
34
34
|
}
|
package/readme.md
CHANGED
|
@@ -60,7 +60,7 @@ the context will be found and replayed sequentially.
|
|
|
60
60
|
|
|
61
61
|
## Operations
|
|
62
62
|
|
|
63
|
-
>
|
|
63
|
+
> Commands use current Kubernetes context.
|
|
64
64
|
|
|
65
65
|
### deploy
|
|
66
66
|
|
|
@@ -75,15 +75,8 @@ the context will be found and replayed sequentially.
|
|
|
75
75
|
### conceal
|
|
76
76
|
|
|
77
77
|
<dl>
|
|
78
|
-
<dt>
|
|
79
|
-
<code>toa conceal</code>
|
|
80
|
-
</dt>
|
|
81
|
-
<dd>Deploy new declared secrets.
|
|
82
|
-
|
|
83
|
-
<code>--reset</code> don't skip already deployed</dd>
|
|
84
|
-
|
|
85
78
|
<dt><code>toa conceal <secret> <key> <value></code></dt>
|
|
86
|
-
<dd>Deploy a <code>key</code> with a <code>value</code> to a <code>secret</code>.</dd>
|
|
79
|
+
<dd>Deploy a <code>key</code> with a <code>value</code> to a secret named <code>toa-{secret}</code>.</dd>
|
|
87
80
|
</dl>
|
|
88
81
|
|
|
89
82
|
### reveal
|
|
@@ -101,13 +94,13 @@ the context will be found and replayed sequentially.
|
|
|
101
94
|
<dt>
|
|
102
95
|
<code>toa shell [image]</code>
|
|
103
96
|
</dt>
|
|
104
|
-
<dd>Run interactive shell inside
|
|
97
|
+
<dd>Run interactive shell inside a disposable pod.
|
|
105
98
|
|
|
106
99
|
<code>image</code> docker image<br/>
|
|
107
100
|
</dd>
|
|
108
101
|
</dl>
|
|
109
102
|
|
|
110
|
-
Extra arguments
|
|
103
|
+
Extra arguments can be passed:
|
|
111
104
|
|
|
112
105
|
```shell
|
|
113
106
|
$ toa shell -- ping 1.1
|