Argo Workflows · Schema

io.k8s.api.core.v1.SELinuxOptions

SELinuxOptions are the labels to be applied to the container

CNCFContainersData ProcessingKubernetesMachine-LearningOpen-SourceWorkflow Engine

Properties

Name Type Description
level string Level is SELinux level label that applies to the container.
role string Role is a SELinux role label that applies to the container.
type string Type is a SELinux type label that applies to the container.
user string User is a SELinux user label that applies to the container.
View JSON Schema on GitHub

JSON Schema

argo-workflows-io-k8s-api-core-v1-se-linux-options-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-workflows/refs/heads/main/json-schema/argo-workflows-io-k8s-api-core-v1-se-linux-options-schema.json",
  "title": "io.k8s.api.core.v1.SELinuxOptions",
  "description": "SELinuxOptions are the labels to be applied to the container",
  "type": "object",
  "properties": {
    "level": {
      "description": "Level is SELinux level label that applies to the container.",
      "type": "string"
    },
    "role": {
      "description": "Role is a SELinux role label that applies to the container.",
      "type": "string"
    },
    "type": {
      "description": "Type is a SELinux type label that applies to the container.",
      "type": "string"
    },
    "user": {
      "description": "User is a SELinux user label that applies to the container.",
      "type": "string"
    }
  }
}