komodo_client 2.1.0

Client for the Komodo build and deployment system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
use mogh_resolver::Resolve;
use serde::{Deserialize, Serialize};
use typeshare::typeshare;

use crate::entities::{
  I64, SearchCombinator, U64,
  deployment::{
    Deployment, DeploymentActionState, DeploymentListItem,
    DeploymentQuery, DeploymentState,
  },
  docker::{
    container::{Container, ContainerListItem, ContainerStats},
    service::SwarmService,
  },
  update::Log,
};

use super::KomodoReadRequest;

//

#[cfg(feature = "utoipa")]
#[utoipa::path(
  post,
  path = "/GetDeployment",
  description = "Get a specific deployment by name or id.",
  request_body(content = GetDeployment),
  responses(
    (status = 200, description = "The deployment", body = crate::entities::deployment::DeploymentSchema),
  ),
)]
pub fn get_deployment() {}

/// Get a specific deployment by name or id. Response: [Deployment].
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone, Resolve)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
#[empty_traits(KomodoReadRequest)]
#[response(GetDeploymentResponse)]
#[error(mogh_error::Error)]
pub struct GetDeployment {
  /// Id or name
  #[serde(alias = "id", alias = "name")]
  pub deployment: String,
}

#[typeshare]
pub type GetDeploymentResponse = Deployment;

//

#[cfg(feature = "utoipa")]
#[utoipa::path(
  post,
  path = "/ListDeployments",
  description = "List deployments matching optional query.",
  request_body(content = ListDeployments),
  responses(
    (status = 200, description = "The list of deployments", body = ListDeploymentsResponse),
  ),
)]
pub fn list_deployments() {}

/// List deployments matching optional query.
/// Response: [ListDeploymentsResponse].
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone, Default, Resolve)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
#[empty_traits(KomodoReadRequest)]
#[response(ListDeploymentsResponse)]
#[error(mogh_error::Error)]
pub struct ListDeployments {
  /// optional structured query to filter deployments.
  #[serde(default)]
  pub query: DeploymentQuery,
}

#[typeshare]
pub type ListDeploymentsResponse = Vec<DeploymentListItem>;

//

#[cfg(feature = "utoipa")]
#[utoipa::path(
  post,
  path = "/ListFullDeployments",
  description = "List deployments matching optional query.",
  request_body(content = ListFullDeployments),
  responses(
    (status = 200, description = "The list of deployments", body = ListFullDeploymentsResponse),
  ),
)]
pub fn list_full_deployments() {}

/// List deployments matching optional query.
/// Response: [ListFullDeploymentsResponse].
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone, Default, Resolve)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
#[empty_traits(KomodoReadRequest)]
#[response(ListFullDeploymentsResponse)]
#[error(mogh_error::Error)]
pub struct ListFullDeployments {
  /// optional structured query to filter deployments.
  #[serde(default)]
  pub query: DeploymentQuery,
}

#[typeshare]
pub type ListFullDeploymentsResponse = Vec<Deployment>;

//

#[cfg(feature = "utoipa")]
#[utoipa::path(
  post,
  path = "/GetDeploymentContainer",
  description = "Get the container, including image / status, of the target deployment.",
  request_body(content = GetDeploymentContainer),
  responses(
    (status = 200, description = "The deployment container", body = GetDeploymentContainerResponse),
  ),
)]
pub fn get_deployment_container() {}

/// Get the container, including image / status, of the target deployment.
/// Response: [GetDeploymentContainerResponse].
///
/// Note. This does not hit the server directly. The status comes from an
/// in memory cache on the core, which hits the server periodically
/// to keep it up to date.
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone, Resolve)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
#[empty_traits(KomodoReadRequest)]
#[response(GetDeploymentContainerResponse)]
#[error(mogh_error::Error)]
pub struct GetDeploymentContainer {
  /// Id or name
  #[serde(alias = "id", alias = "name")]
  pub deployment: String,
}

/// Response for [GetDeploymentContainer].
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
pub struct GetDeploymentContainerResponse {
  pub state: DeploymentState,
  pub container: Option<ContainerListItem>,
}

//

#[cfg(feature = "utoipa")]
#[utoipa::path(
  post,
  path = "/InspectDeploymentContainer",
  description = "Inspect the docker container associated with the Deployment.",
  request_body(content = InspectDeploymentContainer),
  responses(
    (status = 200, description = "The container", body = InspectDeploymentContainerResponse),
  ),
)]
pub fn inspect_deployment_container() {}

/// Inspect the docker container associated with the Deployment.
/// Response: [Container].
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone, Resolve)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
#[empty_traits(KomodoReadRequest)]
#[response(InspectDeploymentContainerResponse)]
#[error(mogh_error::Error)]
pub struct InspectDeploymentContainer {
  /// Id or name
  #[serde(alias = "id", alias = "name")]
  pub deployment: String,
}

#[typeshare]
pub type InspectDeploymentContainerResponse = Container;

//

#[cfg(feature = "utoipa")]
#[utoipa::path(
  post,
  path = "/InspectDeploymentSwarmService",
  description = "Inspect the swarm service associated with the Deployment.",
  request_body(content = InspectDeploymentSwarmService),
  responses(
    (status = 200, description = "The swarm service", body = InspectDeploymentSwarmServiceResponse),
  ),
)]
pub fn inspect_deployment_swarm_service() {}

/// Inspect the swarm service associated with the Deployment.
/// Response: [SwarmService].
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone, Resolve)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
#[empty_traits(KomodoReadRequest)]
#[response(InspectDeploymentSwarmServiceResponse)]
#[error(mogh_error::Error)]
pub struct InspectDeploymentSwarmService {
  /// Id or name
  #[serde(alias = "id", alias = "name")]
  pub deployment: String,
}

#[typeshare]
pub type InspectDeploymentSwarmServiceResponse = SwarmService;

//

#[cfg(feature = "utoipa")]
#[utoipa::path(
  post,
  path = "/GetDeploymentLog",
  description = "Get the deployment log's tail, split by stdout/stderr.",
  request_body(content = GetDeploymentLog),
  responses(
    (status = 200, description = "The log", body = GetDeploymentLogResponse),
  ),
)]
pub fn get_deployment_log() {}

/// Get the deployment log's tail, split by stdout/stderr.
/// Response: [Log].
///
/// Note. This call will hit the underlying server directly for most up to date log.
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone, Resolve)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
#[empty_traits(KomodoReadRequest)]
#[response(GetDeploymentLogResponse)]
#[error(mogh_error::Error)]
pub struct GetDeploymentLog {
  /// Id or name
  #[serde(alias = "id", alias = "name")]
  pub deployment: String,
  /// The number of lines of the log tail to include.
  /// Default: 100.
  /// Max: 5000.
  #[serde(default = "default_tail")]
  pub tail: U64,
  /// Enable `--timestamps`
  #[serde(default)]
  pub timestamps: bool,
}

fn default_tail() -> u64 {
  50
}

#[typeshare]
pub type GetDeploymentLogResponse = Log;

//

#[cfg(feature = "utoipa")]
#[utoipa::path(
  post,
  path = "/SearchDeploymentLog",
  description = "Search the deployment log's tail using `grep`.",
  request_body(content = SearchDeploymentLog),
  responses(
    (status = 200, description = "The log", body = SearchDeploymentLogResponse),
  ),
)]
pub fn search_deployment_log() {}

/// Search the deployment log's tail using `grep`. All lines go to stdout.
/// Response: [Log].
///
/// Note. This call will hit the underlying server directly for most up to date log.
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone, Resolve)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
#[empty_traits(KomodoReadRequest)]
#[response(SearchDeploymentLogResponse)]
#[error(mogh_error::Error)]
pub struct SearchDeploymentLog {
  /// Id or name
  #[serde(alias = "id", alias = "name")]
  pub deployment: String,
  /// The terms to search for.
  pub terms: Vec<String>,
  /// When searching for multiple terms, can use `AND` or `OR` combinator.
  ///
  /// - `AND`: Only include lines with **all** terms present in that line.
  /// - `OR`: Include lines that have one or more matches in the terms.
  #[serde(default)]
  pub combinator: SearchCombinator,
  /// Invert the results, ie return all lines that DON'T match the terms / combinator.
  #[serde(default)]
  pub invert: bool,
  /// Enable `--timestamps`
  #[serde(default)]
  pub timestamps: bool,
}

#[typeshare]
pub type SearchDeploymentLogResponse = Log;

//

#[cfg(feature = "utoipa")]
#[utoipa::path(
  post,
  path = "/GetDeploymentStats",
  description = "Get the deployment container's stats using `docker stats`.",
  request_body(content = GetDeploymentStats),
  responses(
    (status = 200, description = "The deployment stats", body = GetDeploymentStatsResponse),
  ),
)]
pub fn get_deployment_stats() {}

/// Get the deployment container's stats using `docker stats`.
/// Response: [GetDeploymentStatsResponse].
///
/// Note. This call will hit the underlying server directly for most up to date stats.
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone, Resolve)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
#[empty_traits(KomodoReadRequest)]
#[response(GetDeploymentStatsResponse)]
#[error(mogh_error::Error)]
pub struct GetDeploymentStats {
  /// Id or name
  #[serde(alias = "id", alias = "name")]
  pub deployment: String,
}

#[typeshare]
pub type GetDeploymentStatsResponse = ContainerStats;

//

#[cfg(feature = "utoipa")]
#[utoipa::path(
  post,
  path = "/GetDeploymentActionState",
  description = "Get current action state for the deployment.",
  request_body(content = GetDeploymentActionState),
  responses(
    (status = 200, description = "The deployment action state", body = GetDeploymentActionStateResponse),
  ),
)]
pub fn get_deployment_action_state() {}

/// Get current action state for the deployment.
/// Response: [DeploymentActionState].
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone, Resolve)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
#[empty_traits(KomodoReadRequest)]
#[response(DeploymentActionState)]
#[error(mogh_error::Error)]
pub struct GetDeploymentActionState {
  /// Id or name
  #[serde(alias = "id", alias = "name")]
  pub deployment: String,
}

#[typeshare]
pub type GetDeploymentActionStateResponse = DeploymentActionState;

//

#[cfg(feature = "utoipa")]
#[utoipa::path(
  post,
  path = "/GetDeploymentsSummary",
  description = "Gets a summary of data relating to all deployments.",
  request_body(content = GetDeploymentsSummary),
  responses(
    (status = 200, description = "The deployments summary", body = GetDeploymentsSummaryResponse),
  ),
)]
pub fn get_deployments_summary() {}

/// Gets a summary of data relating to all deployments.
/// Response: [GetDeploymentsSummaryResponse].
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone, Resolve)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
#[empty_traits(KomodoReadRequest)]
#[response(GetDeploymentsSummaryResponse)]
#[error(mogh_error::Error)]
pub struct GetDeploymentsSummary {}

/// Response for [GetDeploymentsSummary].
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
pub struct GetDeploymentsSummaryResponse {
  /// The total number of Deployments
  pub total: I64,
  /// The number of Deployments with Running state
  pub running: I64,
  /// The number of Deployments with Stopped or Paused state
  pub stopped: I64,
  /// The number of Deployments with NotDeployed state
  pub not_deployed: I64,
  /// The number of Deployments with Restarting or Dead or Created (other) state
  pub unhealthy: I64,
  /// The number of Deployments with Unknown state
  pub unknown: I64,
}

//

#[cfg(feature = "utoipa")]
#[utoipa::path(
  post,
  path = "/ListCommonDeploymentExtraArgs",
  description = "Gets a list of existing values used as extra args across other deployments.",
  request_body(content = ListCommonDeploymentExtraArgs),
  responses(
    (status = 200, description = "The common extra args", body = ListCommonDeploymentExtraArgsResponse),
  ),
)]
pub fn list_common_deployment_extra_args() {}

/// Gets a list of existing values used as extra args across other deployments.
/// Useful to offer suggestions. Response: [ListCommonDeploymentExtraArgsResponse]
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone, Resolve)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
#[empty_traits(KomodoReadRequest)]
#[response(ListCommonDeploymentExtraArgsResponse)]
#[error(mogh_error::Error)]
pub struct ListCommonDeploymentExtraArgs {
  /// optional structured query to filter deployments.
  #[serde(default)]
  pub query: DeploymentQuery,
}

#[typeshare]
pub type ListCommonDeploymentExtraArgsResponse = Vec<String>;