Skip to main content
πŸŽ“ Claude Code Masterclass Learn AI-assisted development on Udemy β€” plus the companion book on Leanpub & Amazon. Start Learning
KyvernoCon Virtual 2026 policy-as-code Kubernetes event
Open Source

KyvernoCon Virtual 2026: Policy-as-Code Meets AI and

Full agenda and key takeaways from KyvernoCon Virtual 2026 β€” covering CEL policies, AI workload provenance, ISO27001 compliance, multi-tenant RBAC, GitOps.

LB
Luca Berton
Β· 3 min read

KyvernoCon Virtual 2026 brought together the Kubernetes policy community for a packed half-day of talks spanning the full spectrum β€” from CEL migration to AI workload security. Here’s a breakdown of the agenda and key themes.

Event Overview

  • Event: KyvernoCon Virtual 2026
  • Format: Virtual (half-day)
  • Focus: Policy-as-Code for Kubernetes β€” compliance, AI security, multi-tenancy, GitOps

Full Agenda

TimeSession
8:00 AMWelcome and Opening Remarks
8:05 AMFrom YAML to CEL: Understanding Kyverno’s New Policy Model
8:25 AMPoison Control: Unifying Software and Content Provenance for AI Workloads via Kyverno
8:55 AMFrom Policy to Production: Implementing ISO27001/BSI IT-Grundschutz in Kubernetes with Kyverno
9:20 AMBreak
9:35 AMReBAC with Kyverno: Automating Multi-Tenant RBAC at Scale
10:05 AMDrift Prevention in GitOps Workflows Using Kyverno
10:35 AMPolicy-as-Code for LLM Inference: Cost and Security Guardrails
10:50 AMWebhook Topology and Admission Latency: Lessons from Migration
11:00 AMClosing Remarks

Key Themes

1. From YAML to CEL: The Policy Language Evolution

Kyverno is embracing Common Expression Language (CEL) as an alternative to its traditional YAML-based policy definitions. CEL brings:

  • Type safety β€” compile-time validation of policy expressions
  • Kubernetes alignment β€” CEL is already used in ValidatingAdmissionPolicy (built into K8s 1.30+)
  • Portability β€” same expressions work in Kyverno, native K8s admission, and other tools
  • Performance β€” compiled expressions evaluate faster than interpreted YAML/JMESPath
# Old YAML-based policy
apiVersion: kyverno.io/v1
kind: ClusterPolicy
spec:
  rules:
    - name: require-labels
      match:
        resources:
          kinds: ["Pod"]
      validate:
        message: "label 'team' is required"
        pattern:
          metadata:
            labels:
              team: "?*"

# New CEL-based policy
apiVersion: kyverno.io/v1
kind: ClusterPolicy
spec:
  rules:
    - name: require-labels
      match:
        resources:
          kinds: ["Pod"]
      validate:
        cel:
          expressions:
            - expression: "has(object.metadata.labels.team)"
              message: "label 'team' is required"

2. AI Workload Provenance: Poison Control

The most forward-looking talk addressed a critical 2026 concern: how do you trust AI model artifacts in your cluster?

The β€œPoison Control” framework unifies:

  • Software provenance (SLSA, Sigstore) β€” verifying container images
  • Content provenance (C2PA) β€” verifying model weights and training data origin
  • Kyverno policies β€” enforcing provenance requirements at admission time
apiVersion: kyverno.io/v1
kind: ClusterPolicy
metadata:
  name: verify-model-provenance
spec:
  rules:
    - name: check-model-signature
      match:
        resources:
          kinds: ["Pod"]
          selector:
            matchLabels:
              workload-type: inference
      verifyImages:
        - imageReferences:
            - "registry.internal/models/*"
          attestors:
            - entries:
                - keys:
                    publicKeys: |-
                      -----BEGIN PUBLIC KEY-----
                      ...model-signing-key...
                      -----END PUBLIC KEY-----
          attestations:
            - type: https://slsa.dev/provenance/v1
              conditions:
                - all:
                    - key: "{{ builder.id }}"
                      operator: Equals
                      value: "https://internal-ci/model-pipeline"

This is particularly relevant given the rise of supply chain attacks on AI models and the need to verify that models deployed in production haven’t been tampered with.

3. ISO27001/BSI IT-Grundschutz Compliance

Mapping compliance frameworks to Kubernetes policies is a real enterprise challenge. The talk demonstrated:

  • Automated evidence collection β€” Kyverno PolicyReports as audit artifacts
  • Control mapping β€” each Kyverno policy tagged with its ISO27001 control ID
  • Continuous compliance β€” real-time violation detection vs. periodic audits
  • BSI IT-Grundschutz β€” German federal security standard mapped to cluster policies

4. ReBAC: Relationship-Based Access Control

Moving beyond traditional RBAC, Relationship-Based Access Control with Kyverno enables:

  • Dynamic permission inheritance based on resource relationships
  • Multi-tenant isolation without thousands of static RoleBindings
  • Namespace ownership chains (team β†’ project β†’ namespace β†’ workload)
# Generate RoleBindings based on team ownership annotations
apiVersion: kyverno.io/v1
kind: ClusterPolicy
metadata:
  name: rebac-team-access
spec:
  rules:
    - name: generate-team-binding
      match:
        resources:
          kinds: ["Namespace"]
      generate:
        kind: RoleBinding
        name: "team-admin-{{ request.object.metadata.labels.team }}"
        namespace: "{{ request.object.metadata.name }}"
        data:
          roleRef:
            apiGroup: rbac.authorization.k8s.io
            kind: ClusterRole
            name: admin
          subjects:
            - apiGroup: rbac.authorization.k8s.io
              kind: Group
              name: "team-{{ request.object.metadata.labels.team }}"

5. GitOps Drift Prevention

Kyverno can detect and prevent drift between Git-declared state and cluster state:

  • Mutation blocking β€” prevent manual kubectl changes to GitOps-managed resources
  • Drift detection β€” PolicyReports flag resources that differ from their Git source
  • Exception management β€” allow emergency changes with audit trail

6. LLM Inference Cost and Security Guardrails

Policy-as-Code for AI inference β€” the newest frontier:

  • Cost guardrails β€” limit max tokens, concurrent requests, model size per namespace
  • Security guardrails β€” block prompt injection patterns, enforce output filtering
  • Resource quotas β€” GPU time limits per team, auto-scaling boundaries
apiVersion: kyverno.io/v1
kind: ClusterPolicy
metadata:
  name: llm-inference-guardrails
spec:
  rules:
    - name: limit-gpu-per-inference
      match:
        resources:
          kinds: ["Pod"]
          selector:
            matchLabels:
              workload-type: inference
      validate:
        message: "Inference pods limited to 4 GPUs max per namespace quota"
        deny:
          conditions:
            - key: "{{ request.object.spec.containers[0].resources.limits.nvidia\\.com/gpu }}"
              operator: GreaterThan
              value: 4

7. Webhook Performance at Scale

The migration talk covered real-world admission webhook challenges:

  • Topology-aware webhook placement β€” co-locate webhook pods with API server
  • Latency budgets β€” keep total admission under 500ms (multiple webhooks compound)
  • Failure modes β€” failurePolicy: Ignore vs Fail trade-offs
  • Webhook ordering β€” mutating before validating, dependency chains

Kyverno in 2026: The State of Policy

Kyverno has evolved significantly since its CNCF graduation:

  • CEL support β€” native Kubernetes expression language
  • ValidatingAdmissionPolicy integration β€” generate native K8s policies from Kyverno
  • CLI for CI/CD β€” kyverno test in pipelines without a cluster
  • Policy Reports v2 β€” structured compliance evidence
  • AI workload policies β€” purpose-built for model serving and training guardrails

Policy-as-Code is no longer just about β€œrequire labels on pods.” In 2026, it’s about AI supply chain trust, compliance automation, and cost governance for inference workloads. Kyverno is leading that evolution.

Free 30-min AI & Cloud consultation

Book Now