@@ -11,10 +11,10 @@ Usage:
11
11
cortex deploy [CONFIG_FILE] [flags]
12
12
13
13
Flags:
14
- -e , --env string environment (default "default")
15
- -f , --force override the in-progress api update
16
- -h , --help help for deploy
17
- -y, --yes skip prompts
14
+ -f , --force override the in-progress api update
15
+ -h , --help help for deploy
16
+ -p , --profile string profile (default "local")
17
+ -y, --yes skip prompts
18
18
```
19
19
20
20
## get
26
26
cortex get [API_NAME] [flags]
27
27
28
28
Flags:
29
- -e , --env string environment (default "default")
30
- -h , --help help for get
31
- -w, --watch re-run the command every second
29
+ -h , --help help for get
30
+ -p , --profile string profile (default "local")
31
+ -w, --watch re-run the command every second
32
32
```
33
33
34
34
## logs
40
40
cortex logs API_NAME [flags]
41
41
42
42
Flags:
43
- -e , --env string environment (default "default")
44
- -h , --help help for logs
43
+ -h , --help help for logs
44
+ -p , --profile string profile (default "local")
45
45
```
46
46
47
47
## refresh
53
53
cortex refresh API_NAME [flags]
54
54
55
55
Flags:
56
- -e , --env string environment (default "default")
57
- -f , --force override the in-progress api update
58
- -h , --help help for refresh
56
+ -f , --force override the in-progress api update
57
+ -h , --help help for refresh
58
+ -p , --profile string profile (default "local")
59
59
```
60
60
61
61
## predict
67
67
cortex predict API_NAME JSON_FILE [flags]
68
68
69
69
Flags:
70
- --debug predict with debug mode
71
- -e , --env string environment (default "default")
72
- -h , --help help for predict
70
+ --debug predict with debug mode
71
+ -h , --help help for predict
72
+ -p , --profile string profile (default "local")
73
73
```
74
74
75
75
## delete
@@ -81,10 +81,10 @@ Usage:
81
81
cortex delete API_NAME [flags]
82
82
83
83
Flags:
84
- -e , --env string environment (default "default")
85
- -f , --force delete the api without confirmation
86
- -h , --help help for delete
87
- -c , --keep-cache keep cached data for the api
84
+ -f , --force delete the api without confirmation
85
+ -h , --help help for delete
86
+ -c , --keep-cache keep cached data for the api
87
+ -p , --profile string profile (default "local")
88
88
```
89
89
90
90
## cluster up
96
96
cortex cluster up [flags]
97
97
98
98
Flags:
99
- -c, --config string path to a cluster configuration file
100
- -e , --env string environment (default "default")
101
- -h , --help help for up
99
+ -c, --config string path to a cluster configuration file
100
+ -h , --help help for up
101
+ -p , --profile string profile (default "aws")
102
102
```
103
103
104
104
## cluster info
@@ -110,10 +110,11 @@ Usage:
110
110
cortex cluster info [flags]
111
111
112
112
Flags:
113
- -c, --config string path to a cluster configuration file
114
- -d, --debug save the current cluster state to a file
115
- -e, --env string environment (default "default")
116
- -h, --help help for info
113
+ -c, --config string path to a cluster configuration file
114
+ -d, --debug save the current cluster state to a file
115
+ -h, --help help for info
116
+ -p, --profile string profile (default "aws")
117
+
117
118
```
118
119
119
120
## cluster update
@@ -125,9 +126,9 @@ Usage:
125
126
cortex cluster update [flags]
126
127
127
128
Flags:
128
- -c, --config string path to a cluster configuration file
129
- -e , --env string environment (default "default")
130
- -h , --help help for update
129
+ -c, --config string path to a cluster configuration file
130
+ -h , --help help for update
131
+ -p , --profile string profile (default "aws")
131
132
```
132
133
133
134
## cluster down
@@ -152,25 +153,49 @@ Usage:
152
153
cortex version [flags]
153
154
154
155
Flags:
155
- -e , --env string environment (default "default")
156
- -h , --help help for version
156
+ -h , --help help for version
157
+ -p , --profile string profile (default "local")
157
158
```
158
159
159
160
## configure
160
161
161
162
``` text
162
- configure the cli
163
+ configure a cli profile
163
164
164
165
Usage:
165
- cortex configure [flags]
166
+ cortex configure [--profile=PROFIE_NAME] [ flags]
166
167
167
168
Flags:
168
169
-k, --aws-access-key-id string set the aws access key id without prompting
169
170
-s, --aws-secret-access-key string set the aws secret access key without prompting
170
- -e, --env string environment (default "default")
171
171
-h, --help help for configure
172
172
-o, --operator-endpoint string set the operator endpoint without prompting
173
- -p, --print print the configuration
173
+ -p, --profile string profile (default "local")
174
+ -v, --provider string set the provider without prompting
175
+ ```
176
+
177
+ ## configure list
178
+
179
+ ``` text
180
+ list all configured profiles
181
+
182
+ Usage:
183
+ cortex configure list [flags]
184
+
185
+ Flags:
186
+ -h, --help help for list
187
+ ```
188
+
189
+ ## configure remove
190
+
191
+ ``` text
192
+ remove a configured profile
193
+
194
+ Usage:
195
+ cortex configure remove PROFILE_NAME [flags]
196
+
197
+ Flags:
198
+ -h, --help help for remove
174
199
```
175
200
176
201
## completion
0 commit comments