Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Cloud Stackland
  • What's new
  • Installation
    • All tutorials
    • Installing Stackland on Yandex BareMetal
    • Setting up external access to a pod in a cluster
    • All guides
    • Projects
    • Resource model
      • Overview
      • Certificate Manager
      • DNS
      • IAM
      • Logging Stack
      • Managed Service for Apache Kafka®
      • Managed Service for PostgreSQL
      • Managed Service for ClickHouse®
      • DataLens
      • Monitoring
      • Object Storage
      • Disk subsystem
      • NVIDIA® GPU support
      • Policy Manager
      • Secrets Store
      • SpeechSense
  • Access management
  • Pricing policy
  • Diagnostics and troubleshooting

In this article:

  • How to choose a preset
  • Configuration
  1. Concepts
  2. Components
  3. Policy Manager

Policy Manager

Written by
Yandex Cloud
Updated at April 8, 2026
  • How to choose a preset
  • Configuration

Policy Manager consolidates tools that check Kubernetes resources for compliance with policies and generate reports in the OpenReports format. You can track Policy Manager notifications in the management console under System > Events. The current implementation of policy compliance verification is based on Kyverno.

In Policy Manager, you can choose between these two types of policy presets:

  • Baseline: Preset based on the baseline Kubernetes security standard for pods.
  • Restricted: Preset based on the restricted Kubernetes security standard for pods.

You can select a default cluster policy preset using the PolicyManagerConfig custom resource. To activate an additional preset, use the ClusterPolicySet resource.

How to choose a presetHow to choose a preset

The baseline preset is applied by default. It works best for applications whose failures or unavailability do not cause major consequences. This preset prevents known privilege abuses in container environments. It is easy-to-use and suitable for cases that do not require setting up an extensive set of policies. For the list of available policies, see this Kubernetes guide.

The restricted preset ensures compliance with the current pod protection recommendations. It is designed for applications that are critical for security and for users with a low trust level. For the list of available policies, see this Kubernetes guide.

To add a new preset to your cluster, see the guide on activating policy presets. To change the default preset, change the PolicyManagerConfig settings.

ConfigurationConfiguration

Here is an example:

apiVersion: stackland.yandex.cloud/v1alpha1
kind: PolicyManagerConfig
metadata:
  name: main # This is a required field you must set to `main`
spec:
  enabled: true
  settings:
    defaultPolicySet:
      engines:
        kyverno: # tool name
          presets:
            - baseline      # based on Pod Security Standard Baseline (default)
            # - restricted  # based on Pod Security Standard Restricted (optional)

Where:

  • enabled: Enables the component. Selecting enabled: false will delete all Policy Manager components (Controller, Kyverno, Policy Reporter, and ClusterPolicySet).
  • settings.defaultPolicySet.engines: Sets a list of policy presets and tools to verify them.

Was the article helpful?

Previous
NVIDIA® GPU support
Next
Secrets Store
© 2026 Direct Cursus Technology L.L.C.