You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
deployment command: Remove flag based create (#460)
Removes the flags to change the deployment create request properties
and instead adds the ability to use the deployment template defaults and
document a workflow that can be used to easily tweak those settings and
create a deployment with the file declaration instead.
Signed-off-by: Marc Lopez <marc5.12@outlook.com>
createCmd.Flags().Bool("generate-payload", false, "Returns the deployment payload without actually creating the deployment resources")
215
109
createCmd.Flags().String("request-id", "", "Optional request ID - Can be found in the Stderr device when a previous deployment creation failed. For more information see the examples in the help command page")
216
-
217
-
createCmd.Flags().String("es-ref-id", "main-elasticsearch", "Optional RefId for the Elasticsearch deployment")
218
-
createCmd.Flags().Int32("es-zones", 1, "Number of zones the Elasticsearch instances will span")
219
-
createCmd.Flags().String("es-size", "4g", "Memory (RAM) in GB that each of the Elasticsearch instances will have")
220
-
createCmd.Flags().StringArrayP("es-node-topology", "e", nil, "Optional Elasticsearch node topology element definition. See help for more information")
221
-
createCmd.Flags().StringSlice("plugin", nil, "Additional plugins to add to the Elasticsearch deployment")
222
-
223
-
createCmd.Flags().String("kibana-ref-id", "main-kibana", "Optional RefId for the Kibana deployment")
224
-
createCmd.Flags().Int32("kibana-zones", 1, "Number of zones the Kibana instances will span")
225
-
createCmd.Flags().String("kibana-size", "1g", "Memory (RAM) in GB that each of the Kibana instances will have")
226
-
227
-
createCmd.Flags().Bool("apm", false, "Enables APM for the deployment")
228
-
createCmd.Flags().String("apm-ref-id", "main-apm", "Optional RefId for the APM deployment")
229
-
createCmd.Flags().Int32("apm-zones", 1, "Number of zones the APM instances will span")
230
-
createCmd.Flags().String("apm-size", "0.5g", "Memory (RAM) in GB that each of the APM instances will have")
231
-
232
-
createCmd.Flags().Bool("appsearch", false, "Enables App Search for the deployment")
233
-
createCmd.Flags().String("appsearch-ref-id", "main-appsearch", "Optional RefId for the App Search deployment")
234
-
createCmd.Flags().Int32("appsearch-zones", 1, "Number of zones the App Search instances will span")
235
-
createCmd.Flags().String("appsearch-size", "2g", "Memory (RAM) in GB that each of the App Search instances will have")
236
-
237
-
createCmd.Flags().Bool("enterprise_search", false, "Enables Enterprise Search for the deployment")
238
-
createCmd.Flags().String("enterprise_search-ref-id", "main-enterprise_search", "Optional RefId for the Enterprise Search deployment")
239
-
createCmd.Flags().Int32("enterprise_search-zones", 1, "Number of zones the Enterprise Search instances will span")
240
-
createCmd.Flags().String("enterprise_search-size", "4g", "Memory (RAM) in GB that each of the Enterprise Search instances will have")
Deployment [b6ecbea3d5c84124b7dca457f2892086] - [Elasticsearch][b6ecbea3d5c84124b7dca457f2892086]: finished running all the plan steps (Total plan duration: 5m11.s)
54
46
Deployment [91c4d60acb804ba0a27651fac02780ec] - [Kibana][8a9d9916cd6e46a7bb0912211d76e2af]: finished running all the plan steps (Total plan duration: 4m29.58s)
55
47
56
-
## Additionally, a more advanced topology for Elasticsearch can be created through "--es-node-topology" or shorthand "-e".
57
-
The following command will create a deployment with two 1GB Elasticsearch instances of the type "data" and
0 commit comments