forked from fussybeaver/bollard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathswarm.rs
More file actions
299 lines (273 loc) · 7.72 KB
/
Copy pathswarm.rs
File metadata and controls
299 lines (273 loc) · 7.72 KB
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
//! Swarm API: Docker swarm is a container orchestration tool, meaning that it allows the user to manage multiple containers deployed across multiple host machines.
#![allow(deprecated)]
use crate::docker::BodyType;
use hyper::Method;
use serde::{Deserialize, Serialize};
use bytes::Bytes;
use http::request::Builder;
use http_body_util::Full;
use std::cmp::Eq;
use std::hash::Hash;
use super::Docker;
use crate::errors::Error;
use crate::models::*;
/// Swam configuration used in the [Init Swarm API](Docker::init_swarm())
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
#[deprecated(
since = "0.19.0",
note = "use the OpenAPI generated bollard::models::SwarmInitRequest"
)]
#[serde(rename_all = "PascalCase")]
pub struct InitSwarmOptions<T>
where
T: Into<String> + Eq + Hash,
{
/// Listen address (format: <ip|interface>[:port])
pub listen_addr: T,
/// Externally reachable address advertised to other nodes.
pub advertise_addr: T,
}
impl<T> From<InitSwarmOptions<T>> for SwarmInitRequest
where
T: Into<String> + Eq + Hash,
{
fn from(opts: InitSwarmOptions<T>) -> Self {
SwarmInitRequest {
listen_addr: Some(opts.listen_addr.into()),
advertise_addr: Some(opts.advertise_addr.into()),
..Default::default()
}
}
}
/// Swam configuration used in the [Join Swarm API](Docker::join_swarm())
#[derive(Debug, Clone, Default, Serialize)]
#[deprecated(
since = "0.19.0",
note = "use the OpenAPI generated bollard::models::SwarmJoinRequest"
)]
pub struct JoinSwarmOptions<T>
where
T: Into<String> + Serialize,
{
/// Externally reachable address advertised to other nodes.
pub advertise_addr: T,
/// Secret token for joining this swarm
pub join_token: T,
}
impl<T> From<JoinSwarmOptions<T>> for SwarmJoinRequest
where
T: Into<String> + Serialize,
{
fn from(opts: JoinSwarmOptions<T>) -> Self {
SwarmJoinRequest {
advertise_addr: Some(opts.advertise_addr.into()),
join_token: Some(opts.join_token.into()),
..Default::default()
}
}
}
/// Swam configuration used in the [Leave Swarm API](Docker::leave_swarm())
#[derive(Debug, Copy, Clone, Default, Serialize)]
#[deprecated(
since = "0.19.0",
note = "use the OpenAPI generated bollard::query_parameters::LeaveSwarmOptions and associated LeaveSwarmOptionsBuilder"
)]
pub struct LeaveSwarmOptions {
/// Force to leave to swarm.
pub force: bool,
}
impl From<LeaveSwarmOptions> for crate::query_parameters::LeaveSwarmOptions {
fn from(opts: LeaveSwarmOptions) -> Self {
crate::query_parameters::LeaveSwarmOptionsBuilder::default()
.force(opts.force)
.build()
}
}
impl Docker {
/// ---
///
/// # Init Swarm
///
/// Initialize a new swarm.
///
/// # Arguments
///
/// - [Init Swarm Options](InitSwarmOptions) struct.
///
/// # Returns
///
/// - A String wrapped in a
/// Future.
///
/// # Examples
///
/// ```rust
/// # use bollard::Docker;
/// # let docker = Docker::connect_with_http_defaults().unwrap();
/// # use bollard::swarm::InitSwarmOptions;
///
/// use std::default::Default;
///
/// let config = InitSwarmOptions {
/// advertise_addr: "127.0.0.1",
/// listen_addr: "0.0.0.0:2377"
/// };
///
/// docker.init_swarm(config);
/// ```
pub async fn init_swarm(&self, config: impl Into<SwarmInitRequest>) -> Result<String, Error> {
let url = "/swarm/init";
let req = self.build_request(
url,
Builder::new().method(Method::POST),
None::<String>,
Docker::serialize_payload(Some(config.into())),
);
self.process_into_value(req).await
}
/// ---
///
/// # Inspect Swarm
///
/// Inspect swarm.
///
/// # Arguments
///
/// # Returns
///
/// - [Swarm](swarm) struct, wrapped in a Future.
///
/// # Examples
///
/// ```rust
/// # use bollard::Docker;
/// # let docker = Docker::connect_with_http_defaults().unwrap();
///
/// docker.inspect_swarm();
/// ```
pub async fn inspect_swarm(&self) -> Result<Swarm, Error> {
let url = "/swarm";
let req = self.build_request(
url,
Builder::new().method(Method::GET),
None::<String>,
Ok(BodyType::Left(Full::new(Bytes::new()))),
);
self.process_into_value(req).await
}
/// ---
///
/// # Join a Swarm
///
/// # Arguments
///
/// - [Join Swarm Options](JoinSwarmOptions) struct.
///
/// # Returns
///
/// - unit type `()`, wrapped in a Future.
///
/// # Examples
///
/// ```rust
/// # use bollard::Docker;
/// # let docker = Docker::connect_with_http_defaults().unwrap();
/// # use bollard::swarm::JoinSwarmOptions;
///
/// let config = JoinSwarmOptions {
/// advertise_addr: "127.0.0.1",
/// join_token: "token",
/// };
/// docker.join_swarm(config);
/// ```
pub async fn join_swarm(&self, config: impl Into<SwarmJoinRequest>) -> Result<(), Error> {
let url = "/swarm/join";
let req = self.build_request(
url,
Builder::new().method(Method::POST),
None::<String>,
Docker::serialize_payload(Some(config.into())),
);
self.process_into_unit(req).await
}
/// ---
///
/// # Leave a Swarm
///
/// # Arguments
///
/// # Returns
///
/// - unit type `()`, wrapped in a Future.
///
/// # Examples
///
/// ```rust
/// # use bollard::Docker;
/// # use bollard::query_parameters::LeaveSwarmOptions;
/// # let docker = Docker::connect_with_http_defaults().unwrap();
///
/// docker.leave_swarm(None::<LeaveSwarmOptions>);
/// ```
pub async fn leave_swarm(
&self,
options: Option<impl Into<crate::query_parameters::LeaveSwarmOptions>>,
) -> Result<(), Error> {
let url = "/swarm/leave";
let req = self.build_request(
url,
Builder::new().method(Method::POST),
options.map(Into::into),
Ok(BodyType::Left(Full::new(Bytes::new()))),
);
self.process_into_unit(req).await
}
/// ---
///
/// # Update a Swarm
///
/// Update a swarm's configuration.
///
/// # Arguments
///
/// - [SwarmSpec](SwarmSpec) struct.
/// - [UpdateSwarmOptions](crate::query_parameters::UpdateSwarmOptions) struct.
///
/// # Returns
///
/// - unit type `()`, wrapped in a Future.
///
/// # Examples
///
/// ```rust
/// # use bollard::Docker;
/// # let docker = Docker::connect_with_http_defaults().unwrap();
/// use bollard::query_parameters::UpdateSwarmOptionsBuilder;
///
/// let result = async move {
/// let swarm = docker.inspect_swarm().await?;
/// let version = swarm.version.unwrap().index.unwrap();
/// let spec = swarm.spec.unwrap();
///
/// let options = UpdateSwarmOptionsBuilder::default()
/// .version(version as i64)
/// .build();
///
/// docker.update_swarm(spec, options).await
/// };
/// ```
pub async fn update_swarm(
&self,
swarm_spec: SwarmSpec,
options: crate::query_parameters::UpdateSwarmOptions,
) -> Result<(), Error> {
let url = "/swarm/update";
let req = self.build_request(
url,
Builder::new().method(Method::POST),
Some(options),
Docker::serialize_payload(Some(swarm_spec)),
);
self.process_into_unit(req).await
}
}