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
use std::{
collections::BTreeMap,
env,
time::{SystemTime, UNIX_EPOCH},
};
use k8s_openapi::{
api::{
apps::v1::Deployment,
core::v1::{
ConfigMap, Container, EnvVar, HTTPGetAction, Namespace, Pod, PodSpec, PodTemplateSpec,
Probe, ResourceRequirements, ServiceAccount, VolumeMount,
},
rbac::v1::{RoleBinding, RoleRef, Subject},
},
apimachinery::pkg::{
api::resource::Quantity, apis::meta::v1::ObjectMeta, util::intstr::IntOrString,
},
chrono,
};
use kube::{
api::{DeleteParams, ListParams, PostParams},
runtime::wait::Condition,
Api, Resource, ResourceExt,
};
use tokio::sync::OnceCell;
use quilkin::config::watch::agones::crd::{
Fleet, FleetSpec, GameServer, GameServerPort, GameServerSpec, GameServerState,
GameServerTemplateSpec,
};
mod pod;
mod sidecar;
mod xds;
#[allow(dead_code)]
static CLIENT: OnceCell<Client> = OnceCell::const_new();
#[allow(dead_code)]
const IMAGE_TAG: &str = "IMAGE_TAG";
const DELETE_DELAY_SECONDS: &str = "DELETE_DELAY_SECONDS";
pub const GAMESERVER_IMAGE: &str = "gcr.io/agones-images/simple-game-server:0.13";
#[derive(Clone)]
pub struct Client {
pub kubernetes: kube::Client,
pub namespace: String,
pub quilkin_image: String,
}
impl Client {
pub async fn new() -> Client {
let mut client = CLIENT
.get_or_init(|| async {
let client = kube::Client::try_default()
.await
.expect("Kubernetes client to be created");
Client {
kubernetes: client.clone(),
namespace: setup_namespace(client).await,
quilkin_image: env::var(IMAGE_TAG).unwrap(),
}
})
.await
.clone();
client.kubernetes = kube::Client::try_default()
.await
.expect("Kubernetes client to be created");
client
}
pub fn namespaced_api<K: Resource<Scope = kube::core::NamespaceResourceScope>>(&self) -> Api<K>
where
<K as Resource>::DynamicType: Default,
{
Api::namespaced(self.kubernetes.clone(), self.namespace.as_str())
}
}
#[allow(dead_code)]
async fn setup_namespace(client: kube::Client) -> String {
let namespaces: Api<Namespace> = Api::all(client.clone());
let lp = ListParams::default().labels("owner=quilkin-test");
let nss = namespaces.list(&lp).await.unwrap();
let dp = DeleteParams::default();
let delay = env::var(DELETE_DELAY_SECONDS)
.ok()
.and_then(|s| s.parse::<i64>().ok())
.map(chrono::Duration::seconds);
for ns in nss {
let name = ns.name_unchecked();
let delete = delay
.and_then(|duration| {
let expiry = ns.creation_timestamp()?.0 + duration;
Some(chrono::Utc::now() > expiry)
})
.unwrap_or(true);
if delete {
if let Err(err) = namespaces.delete(name.as_str(), &dp).await {
println!("Failure attempting to deleted namespace: {:?}, {err}", name);
}
}
}
let name = SystemTime::now()
.duration_since(UNIX_EPOCH)
.unwrap()
.as_secs()
.to_string();
let metadata = ObjectMeta {
name: Some(name),
labels: Some(BTreeMap::from([("owner".into(), "quilkin-test".into())])),
..Default::default()
};
let test_namespace = Namespace {
metadata,
spec: None,
status: None,
};
let pp = PostParams::default();
namespaces
.create(&pp, &test_namespace)
.await
.expect("namespace to be created");
add_agones_service_account(client, test_namespace.name_unchecked()).await;
test_namespace.name_unchecked()
}
async fn add_agones_service_account(client: kube::Client, namespace: String) {
let service_accounts: Api<ServiceAccount> = Api::namespaced(client.clone(), namespace.as_str());
let role_bindings: Api<RoleBinding> = Api::namespaced(client, namespace.as_str());
let pp = PostParams::default();
let labels = BTreeMap::from([("app".to_string(), "agones".to_string())]);
let service_account = ServiceAccount {
metadata: ObjectMeta {
name: Some("agones-sdk".into()),
namespace: Some(namespace.clone()),
labels: Some(labels.clone()),
..Default::default()
},
..Default::default()
};
let service_account = service_accounts
.create(&pp, &service_account)
.await
.unwrap();
let role_binding = RoleBinding {
metadata: ObjectMeta {
name: Some("agones-sdk-access".into()),
namespace: Some(namespace.clone()),
labels: Some(labels),
..Default::default()
},
role_ref: RoleRef {
api_group: "rbac.authorization.k8s.io".into(),
kind: "ClusterRole".into(),
name: "agones-sdk".into(),
},
subjects: Some(vec![Subject {
kind: "ServiceAccount".into(),
name: service_account.name_unchecked(),
namespace: Some(namespace),
api_group: None,
}]),
};
let _ = role_bindings.create(&pp, &role_binding).await.unwrap();
}
pub fn game_server() -> GameServer {
let mut resources = BTreeMap::new();
resources.insert("cpu".into(), Quantity("30m".into()));
resources.insert("memory".into(), Quantity("32Mi".into()));
GameServer {
metadata: ObjectMeta {
generate_name: Some("gameserver-".into()),
..Default::default()
},
spec: GameServerSpec {
ports: vec![GameServerPort {
container_port: 7654,
host_port: None,
name: "udp-port".into(),
port_policy: Default::default(),
container: None,
protocol: Default::default(),
}],
template: PodTemplateSpec {
spec: Some(PodSpec {
containers: vec![Container {
name: "game-server".into(),
image: Some(GAMESERVER_IMAGE.into()),
resources: Some(ResourceRequirements {
limits: Some(resources.clone()),
requests: Some(resources),
}),
..Default::default()
}],
..Default::default()
}),
..Default::default()
},
..Default::default()
},
status: None,
}
}
pub fn fleet() -> Fleet {
let gs = game_server();
Fleet {
metadata: ObjectMeta {
generate_name: Some("fleet-".into()),
..Default::default()
},
spec: FleetSpec {
replicas: Some(3),
template: GameServerTemplateSpec {
metadata: None,
spec: gs.spec,
},
..Default::default()
},
status: None,
}
}
pub fn is_gameserver_ready() -> impl Condition<GameServer> {
|obj: Option<&GameServer>| {
obj.and_then(|gs| gs.status.clone())
.map(|status| matches!(status.state, GameServerState::Ready))
.unwrap_or(false)
}
}
pub fn is_pod_ready() -> impl Condition<Pod> {
|obj: Option<&Pod>| {
if let Some(pod) = obj {
return pod
.status
.as_ref()
.and_then(|status| status.conditions.as_ref())
.and_then(|conditions| {
conditions
.iter()
.find(|condition| condition.type_ == "Ready" && condition.status == "True")
})
.is_some();
}
false
}
}
pub fn is_deployment_ready() -> impl Condition<Deployment> {
|obj: Option<&Deployment>| {
if let Some(deployment) = obj {
let expected = deployment.spec.as_ref().unwrap().replicas.as_ref().unwrap();
return deployment
.status
.as_ref()
.and_then(|status| status.ready_replicas)
.map(|replicas| &replicas == expected)
.unwrap_or(false);
}
false
}
}
pub fn is_fleet_ready() -> impl Condition<Fleet> {
|obj: Option<&Fleet>| {
if let Some(fleet) = obj {
let expected = fleet.spec.replicas.as_ref().unwrap();
return fleet
.status
.as_ref()
.and_then(|status| status.ready_replicas)
.map(|replicas| &replicas == expected)
.unwrap_or(false);
}
false
}
}
pub fn quilkin_container(
client: &Client,
args: Option<Vec<String>>,
volume_mount: Option<String>,
) -> Container {
let mut container = Container {
name: "quilkin".into(),
image: Some(client.quilkin_image.clone()),
args,
env: Some(vec![EnvVar {
name: "RUST_LOG".to_string(),
value: Some("quilkin=trace".into()),
value_from: None,
}]),
liveness_probe: Some(Probe {
http_get: Some(HTTPGetAction {
path: Some("/live".into()),
port: IntOrString::Int(9091),
..Default::default()
}),
initial_delay_seconds: Some(3),
period_seconds: Some(2),
..Default::default()
}),
readiness_probe: Some(Probe {
http_get: Some(HTTPGetAction {
path: Some("/ready".into()),
port: IntOrString::Int(9091),
..Default::default()
}),
initial_delay_seconds: Some(3),
period_seconds: Some(2),
..Default::default()
}),
..Default::default()
};
if let Some(name) = volume_mount {
container.volume_mounts = Some(vec![VolumeMount {
name,
mount_path: "/etc/quilkin".into(),
..Default::default()
}])
};
container
}
pub fn quilkin_config_map(config: &str) -> ConfigMap {
ConfigMap {
metadata: ObjectMeta {
generate_name: Some("quilkin-config-".into()),
..Default::default()
},
data: Some(BTreeMap::from([(
"quilkin.yaml".to_string(),
config.to_string(),
)])),
..Default::default()
}
}
pub fn gameserver_address(gs: &GameServer) -> String {
let status = gs.status.as_ref().unwrap();
let address = format!(
"{}:{}",
status.address,
status.ports.as_ref().unwrap()[0].port
);
address
}