@toa.io/cli 1.1.0-dev.11 → 1.1.0-dev.13
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 +7 -13
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.13",
|
|
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.13",
|
|
27
|
+
"@toa.io/kubernetes": "0.7.5-dev.13",
|
|
28
|
+
"@toa.io/norm": "1.0.2-dev.13",
|
|
29
|
+
"@toa.io/yaml": "0.7.6-dev.13",
|
|
30
30
|
"find-up": "5.0.0",
|
|
31
31
|
"yargs": "17.6.2"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "8c824ed7448e01f0ddf44500a4a6e692d35eaa1b"
|
|
34
34
|
}
|
package/readme.md
CHANGED
|
@@ -4,10 +4,11 @@
|
|
|
4
4
|
|
|
5
5
|
### env
|
|
6
6
|
|
|
7
|
+
Export environment to a `.env` file.
|
|
8
|
+
|
|
7
9
|
<dl>
|
|
8
10
|
<dt><code>toa env [environment]</code></dt>
|
|
9
|
-
<dd>
|
|
10
|
-
|
|
11
|
+
<dd>
|
|
11
12
|
<code>environment</code> deployment environment name (default <code>local</code>).<br/>
|
|
12
13
|
<code>--path</code> path to context (default <code>.</code>)<br/>
|
|
13
14
|
</dd>
|
|
@@ -60,7 +61,7 @@ the context will be found and replayed sequentially.
|
|
|
60
61
|
|
|
61
62
|
## Operations
|
|
62
63
|
|
|
63
|
-
>
|
|
64
|
+
> Commands use current Kubernetes context.
|
|
64
65
|
|
|
65
66
|
### deploy
|
|
66
67
|
|
|
@@ -75,15 +76,8 @@ the context will be found and replayed sequentially.
|
|
|
75
76
|
### conceal
|
|
76
77
|
|
|
77
78
|
<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
79
|
<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>
|
|
80
|
+
<dd>Deploy a <code>key</code> with a <code>value</code> to a secret named <code>toa-{secret}</code>.</dd>
|
|
87
81
|
</dl>
|
|
88
82
|
|
|
89
83
|
### reveal
|
|
@@ -101,13 +95,13 @@ the context will be found and replayed sequentially.
|
|
|
101
95
|
<dt>
|
|
102
96
|
<code>toa shell [image]</code>
|
|
103
97
|
</dt>
|
|
104
|
-
<dd>Run interactive shell inside
|
|
98
|
+
<dd>Run interactive shell inside a disposable pod.
|
|
105
99
|
|
|
106
100
|
<code>image</code> docker image<br/>
|
|
107
101
|
</dd>
|
|
108
102
|
</dl>
|
|
109
103
|
|
|
110
|
-
Extra arguments
|
|
104
|
+
Extra arguments can be passed:
|
|
111
105
|
|
|
112
106
|
```shell
|
|
113
107
|
$ toa shell -- ping 1.1
|