Argo Workflows · JSON Structure

Argo Workflows Io K8S Api Core V1 App Armor Profile Structure

AppArmorProfile defines a pod or container's AppArmor settings.

Type: object Properties: 2 Required: 1
CNCFContainersData ProcessingKubernetesMachine LearningOpen SourceWorkflow Engine

io.k8s.api.core.v1.AppArmorProfile is a JSON Structure definition published by Argo Workflows, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

localhostProfile type

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-workflows/refs/heads/main/json-structure/argo-workflows-io-k8s-api-core-v1-app-armor-profile-structure.json",
  "name": "io.k8s.api.core.v1.AppArmorProfile",
  "description": "AppArmorProfile defines a pod or container's AppArmor settings.",
  "type": "object",
  "properties": {
    "localhostProfile": {
      "description": "localhostProfile indicates a profile loaded on the node that should be used. The profile must be preconfigured on the node to work. Must match the loaded name of the profile. Must be set if and only if type is \"Localhost\".",
      "type": "string"
    },
    "type": {
      "description": "type indicates which kind of AppArmor profile will be applied. Valid options are:\n  Localhost - a profile pre-loaded on the node.\n  RuntimeDefault - the container runtime's default profile.\n  Unconfined - no AppArmor enforcement.",
      "type": "string"
    }
  },
  "required": [
    "type"
  ]
}