fleetmod 0.1.1

Kubernetes model for fleet
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
/**

* Copyright(2024,)Institute of Software, Chinese Academy of Sciences
* author: jiangliuwei@iscas.ac.cn
* since: 0.1.0
*
**/
use serde::{Deserialize, Serialize};
use crate::metadata::medadata::Metadata;
#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "PascalCase")]
pub enum Phase {
    Pending,
    Scheduling,
    SchedulerFailed,
    ContainerCreating,
    ImagePulling,
    ImagePullBackOff,
    Running,
    Succeeded,
    Failed,
    Terminated,
}
#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct Pod {
    #[serde(rename = "apiVersion")]
    pub api_version: String,
    pub kind: String,
    pub metadata: Metadata,
    pub spec: PodSpec,
    pub status: Option<PodStatus>,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct PodSpec {
    #[serde(rename = "nodeName")]
    pub nodename: Option<String>,
    pub hostname: Option<String>,
    #[serde(rename = "hostAliases")]
    pub host_aliases: Option<Vec<HostAlias>>,
    pub containers: Vec<Container>,
    pub volumes: Option<Vec<Volume>>,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct HostAlias {
    pub ip: String,
    pub hostnames: Vec<String>,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct Container {
    pub name: String,
    pub image: String,
    #[serde(rename = "imagePullPolicy")]
    pub image_pull_policy: Option<String>,
    pub command: Option<Vec<String>>,
    pub args: Option<Vec<String>>,
    #[serde(rename = "workingDir")]
    pub working_dir: Option<String>,
    pub ports: Option<Vec<Port>>,
    pub env: Option<Vec<EnvVar>>,
    pub resources: Option<ResourceRequirements>,
    #[serde(rename = "volumeMounts")]
    pub volume_mounts: Option<Vec<VolumeMount>>,
    #[serde(rename = "volumeDevices")]
    pub volume_devices: Option<Vec<VolumeDevice>>,
    #[serde(rename = "securityContext")]
    pub security_context: Option<SecurityContext>,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct Port {
    pub name: Option<String>,
    #[serde(rename = "containerPort")]
    pub container_port: u16,
    pub protocol: Option<String>,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct EnvVar {
    pub name: String,
    pub value: Option<String>,
    #[serde(rename = "valueFrom")]
    pub value_from: Option<ValueFrom>,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct ValueFrom {
    #[serde(rename = "fieldRef")]
    pub field_ref: Option<FieldRef>,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct FieldRef {
    #[serde(rename = "fieldPath")]
    pub field_path: String,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct ResourceRequirements {
    pub requests: Option<Resource>,
    pub limits: Option<Resource>,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct Resource {
    pub memory: Option<String>,
    pub cpu: Option<String>,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct VolumeMount {
    pub name: String,
    #[serde(rename = "mountPath")]
    pub mount_path: String,
    #[serde(rename = "readOnly")]
    pub read_only: Option<bool>,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct VolumeDevice {
    pub name: String,
    #[serde(rename = "devicePath")]
    pub device_path: String,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct SecurityContext {
    #[serde(rename = "runAsUser")]
    pub run_as_user: Option<u32>,
    #[serde(rename = "runAsGroup")]
    pub run_as_group: Option<u32>,
    #[serde(rename = "readOnlyRootFilesystem")]
    pub read_only_root_filesystem: Option<bool>,
    #[serde(rename = "allowPrivilegeEscalation")]
    pub allow_privilege_escalation: Option<bool>,
    pub privileged: Option<bool>,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct Volume {
    pub name: String,
    #[serde(rename = "configMap")]
    pub config_map: Option<ConfigMapVolume>,
    #[serde(rename = "emptyDir")]
    pub empty_dir: Option<EmptyDirVolume>,
    #[serde(rename = "hostPath")]
    pub host_path: Option<HostPathVolume>,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct ConfigMapVolume {
    pub name: String,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct EmptyDirVolume {}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct HostPathVolume {
    pub path: String,
    #[serde(rename = "type")]
    pub path_type: Option<String>,
}

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct PodStatus {
    pub phase: Option<Phase>,
    pub message: Option<String>,
    #[serde(rename = "podIP")]
    pub pod_ip: Option<String>,
    #[serde(rename = "podIPs")]
    pub pod_ips: Option<Vec<PodIPs>>,
}


#[derive(Serialize, Deserialize, Debug, Clone, Default)]
#[serde(rename_all = "lowercase")]
pub struct PodIPs {
    pub ip: Option<String>,
}


impl PodStatus {
    fn new() -> Self {
        PodStatus {
            phase: Some(Phase::Pending),
            message: None,
            pod_ip: None,
            pod_ips: None,
        }
    }
}

impl Pod {
    pub fn fill_pod_defaults(&mut self) {
        self.metadata.fill_metadata_defaults();
        self.status = Some(PodStatus::new())
    }
}

#[cfg(test)]
mod tests {
    use super::*; // 导入主模块中的定义
    use chrono::{DateTime, Local};

    #[test]
    fn test_pod_deserialization() {
        // 测试用的 Pod YAML 示例
        let pod_yaml = r#"
apiVersion: v1
kind: Pod
metadata:
  name: example-pod
  namespace: default
  labels:
    app: my-app
  creationTimestamp: 2024-12-10T08:00:00+08:00
spec:
  nodeName: my-node
  hostname: my-hostname
  hostAliases:
  - ip: "127.0.0.1"
    hostnames:
    - "my-local-host"
    - "another-host"
  containers:
  - name: example-container
    image: example-image:latest
    imagePullPolicy: IfNotPresent
    command: ["nginx"]
    args: ["-g", "daemon off;"]
    workingDir: /usr/share/nginx/html
    ports:
    - name: http
      containerPort: 80
      protocol: TCP
    - name: https
      containerPort: 443
      protocol: TCP
    env:
    - name: ENV_MODE
      value: production
    - name: ENV_VERSION
      valueFrom:
        fieldRef:
          fieldPath: metadata.name
    resources:
      requests:
        memory: "128Mi"
        cpu: "250m"
      limits:
        memory: "512Mi"
        cpu: "1"
    volumeMounts:
    - name: config-volume
      mountPath: /etc/nginx/conf.d
      readOnly: true
    - name: data-volume
      mountPath: /usr/share/nginx/html
    - name: data-host-volume
      mountPath: /usr/share/nginx/a.txt
    volumeDevices:
    - name: device-volume
      devicePath: /dev/sdb
    securityContext:
      runAsUser: 1000
      runAsGroup: 1000
      readOnlyRootFilesystem: true
      allowPrivilegeEscalation: true
      privileged: true
  volumes:
  - name: example-volume
    configMap:
      name: nginx-config
  - name: data-volume
    emptyDir: {}
  - name: device-volume
    hostPath:
      path: /dev/sdb
      type: Directory
  - name: device-volume
    hostPath:
      path: /dev/sdb
      type: Directory
status:
  phase: Pending
  message: begin handle
  podIP: 10.42.0.9
  podIPs:
  - ip: 10.42.0.9
"#;

        let pod: Pod = serde_yaml::from_str(pod_yaml).expect("Failed to parse YAML");

        assert_eq!(pod.api_version, "v1");
        assert_eq!(pod.kind, "Pod");
        assert_eq!(pod.metadata.name, "example-pod");
        assert_eq!(pod.metadata.namespace, "default");
        assert_eq!(pod.spec.containers.len(), 1);
        assert_eq!(pod.spec.containers[0].name, "example-container");
        assert_eq!(pod.spec.containers[0].image, "example-image:latest");
        assert_eq!(
            pod.spec.volumes.as_ref().unwrap()[0].name,
            "example-volume"
        );
        let creation_time = pod.metadata.creation_timestamp;
        assert_eq!(
            creation_time.unwrap(),
            "2024-12-10T08:00:00+08:00"
                .parse::<DateTime<Local>>()
                .unwrap()
        );
        println!("{:#?}", pod);
    }
    #[test]
    fn test_fill_pod_defaults(){
        let pod_yaml = r#"
apiVersion: v1
kind: Pod
metadata:
  name: example-pod
  namespace: default
  labels:
    app: my-app
spec:
  nodeName: my-node
  hostname: my-hostname
  hostAliases:
  - ip: "127.0.0.1"
    hostnames:
    - "my-local-host"
    - "another-host"
  containers:
  - name: example-container
    image: example-image:latest
    imagePullPolicy: IfNotPresent
    command: ["nginx"]
    args: ["-g", "daemon off;"]
    workingDir: /usr/share/nginx/html
    ports:
    - name: http
      containerPort: 80
      protocol: TCP
    - name: https
      containerPort: 443
      protocol: TCP
    env:
    - name: ENV_MODE
      value: production
    - name: ENV_VERSION
      valueFrom:
        fieldRef:
          fieldPath: metadata.name
    resources:
      requests:
        memory: "128Mi"
        cpu: "250m"
      limits:
        memory: "512Mi"
        cpu: "1"
    volumeMounts:
    - name: config-volume
      mountPath: /etc/nginx/conf.d
      readOnly: true
    - name: data-volume
      mountPath: /usr/share/nginx/html
    - name: data-host-volume
      mountPath: /usr/share/nginx/a.txt
    volumeDevices:
    - name: device-volume
      devicePath: /dev/sdb
    securityContext:
      runAsUser: 1000
      runAsGroup: 1000
      readOnlyRootFilesystem: true
      allowPrivilegeEscalation: true
      privileged: true
  volumes:
  - name: example-volume
    configMap:
      name: nginx-config
  - name: data-volume
    emptyDir: {}
  - name: device-volume
    hostPath:
      path: /dev/sdb
      type: Directory
  - name: device-volume
    hostPath:
      path: /dev/sdb
      type: Directory
"#;

        let mut pod: Pod = serde_yaml::from_str(pod_yaml).expect("Failed to parse YAML");

        pod.fill_pod_defaults();
        assert_eq!(pod.api_version, "v1");
        assert_eq!(pod.kind, "Pod");
        assert_eq!(pod.metadata.name, "example-pod");
        assert_eq!(pod.metadata.namespace, "default");
        assert_eq!(pod.spec.containers.len(), 1);
        assert_eq!(pod.spec.containers[0].name, "example-container");
        assert_eq!(pod.spec.containers[0].image, "example-image:latest");
        assert_eq!(
            pod.spec.volumes.as_ref().unwrap()[0].name,
            "example-volume"
        );
        assert_eq!(
            format!("{:#?}",pod.clone().status.unwrap().phase.unwrap()),
            "Pending"
        );

        println!("{:#?}", pod.clone());


    }
}