genpolicy: add support for ReplicaSet YAML input

Generate policy for K8s ReplicaSet YAML.

Signed-off-by: Dan Mihai <dmihai@microsoft.com>
This commit is contained in:
Dan Mihai 2023-10-18 21:02:32 +00:00
parent d84300f1ee
commit 7da17099f2
3 changed files with 112 additions and 0 deletions

View File

@ -21,6 +21,7 @@ mod pod;
mod pod_template;
mod policy;
mod registry;
mod replica_set;
mod secret;
mod settings;
mod utils;

View File

@ -0,0 +1,102 @@
// Copyright (c) 2023 Microsoft Corporation
//
// SPDX-License-Identifier: Apache-2.0
//
// Allow K8s YAML field names.
#![allow(non_snake_case)]
use crate::obj_meta;
use crate::pod;
use crate::pod_template;
use crate::policy;
use crate::settings;
use crate::yaml;
use async_trait::async_trait;
use protocols::agent;
use serde::{Deserialize, Serialize};
use std::collections::BTreeMap;
/// See Reference / Kubernetes API / Workload Resources / ReplicaSet.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct ReplicaSet {
apiVersion: String,
kind: String,
metadata: obj_meta::ObjectMeta,
spec: ReplicaSetSpec,
#[serde(skip)]
doc_mapping: serde_yaml::Value,
}
/// See ReplicaSetSpec in the Kubernetes API reference.
#[derive(Clone, Debug, Serialize, Deserialize)]
struct ReplicaSetSpec {
selector: yaml::LabelSelector,
template: pod_template::PodTemplateSpec,
#[serde(skip_serializing_if = "Option::is_none")]
replicas: Option<i32>,
#[serde(skip_serializing_if = "Option::is_none")]
minReadySeconds: Option<i32>,
}
#[async_trait]
impl yaml::K8sResource for ReplicaSet {
async fn init(&mut self, use_cache: bool, doc_mapping: &serde_yaml::Value, _silent: bool) {
yaml::k8s_resource_init(&mut self.spec.template.spec, use_cache).await;
self.doc_mapping = doc_mapping.clone();
}
fn get_sandbox_name(&self) -> Option<String> {
None
}
fn get_namespace(&self) -> String {
self.metadata.get_namespace()
}
fn get_container_mounts_and_storages(
&self,
policy_mounts: &mut Vec<policy::KataMount>,
storages: &mut Vec<agent::Storage>,
container: &pod::Container,
settings: &settings::Settings,
) {
if let Some(volumes) = &self.spec.template.spec.volumes {
yaml::get_container_mounts_and_storages(
policy_mounts,
storages,
container,
settings,
volumes,
);
}
}
fn generate_policy(&self, agent_policy: &policy::AgentPolicy) -> String {
agent_policy.generate_policy(self)
}
fn serialize(&mut self, policy: &str) -> String {
yaml::add_policy_annotation(&mut self.doc_mapping, "spec.template.metadata", policy);
serde_yaml::to_string(&self.doc_mapping).unwrap()
}
fn get_containers(&self) -> &Vec<pod::Container> {
&self.spec.template.spec.containers
}
fn get_annotations(&self) -> &Option<BTreeMap<String, String>> {
&self.spec.template.metadata.annotations
}
fn use_host_network(&self) -> bool {
if let Some(host_network) = self.spec.template.spec.hostNetwork {
return host_network;
}
false
}
}

View File

@ -15,6 +15,7 @@ use crate::mount_and_storage;
use crate::no_policy;
use crate::pod;
use crate::policy;
use crate::replica_set;
use crate::secret;
use crate::settings;
use crate::volume;
@ -143,6 +144,14 @@ pub fn new_k8s_resource(
debug!("{:#?}", &pod);
Ok((boxed::Box::new(pod), header.kind))
}
"ReplicaSet" => {
let set: replica_set::ReplicaSet = serde_ignored::deserialize(d, |path| {
handle_unused_field(&path.to_string(), silent_unsupported_fields);
})
.unwrap();
debug!("{:#?}", &set);
Ok((boxed::Box::new(set), header.kind))
}
"Secret" => {
let secret: secret::Secret = serde_ignored::deserialize(d, |path| {
handle_unused_field(&path.to_string(), silent_unsupported_fields);