Update archipelago: API, auth, container, parmanode, performance, security
- API handler, RPC, and server updates - Auth and coding rules - Container data manager, dev orchestrator, health monitor, podman client - Parmanode script runner - Performance resource manager - Security container policies and secrets manager - Add build scripts and documentation
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
// Creates security profiles for each containerized app
|
||||
|
||||
use anyhow::Result;
|
||||
use std::collections::HashMap;
|
||||
use std::path::PathBuf;
|
||||
use tokio::fs;
|
||||
|
||||
@@ -58,7 +57,7 @@ impl ContainerPolicyGenerator {
|
||||
}
|
||||
|
||||
/// Apply AppArmor profile to a container
|
||||
pub async fn apply_profile(&self, container_name: &str, profile_path: &PathBuf) -> Result<()> {
|
||||
pub async fn apply_profile(&self, _container_name: &str, profile_path: &PathBuf) -> Result<()> {
|
||||
// Load the profile
|
||||
tokio::process::Command::new("apparmor_parser")
|
||||
.arg("-r")
|
||||
|
||||
Reference in New Issue
Block a user