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
      • Activating a policy preset
      • Deactivating a policy
      • Deleting a policy preset
    • Projects
    • Resource model
  • Access management
  • Pricing policy
  • Diagnostics and troubleshooting

In this article:

  • Using the CLI
  • Using the management console
  1. Step-by-step guides
  2. Policies
  3. Activating a policy preset

Activating policy preset

Written by
Yandex Cloud
Updated at April 8, 2026
  • Using the CLI
  • Using the management console

Stackland allows you to activate policy presets and apply them to cluster resources. To activate a preset, create the ClusterPolicySet resource.

Note

By default, the baseline preset is applied to the cluster.

Using the CLIUsing the CLI

  1. Create a file of the ClusterPolicySet resource, e.g., using the touch clusterpolicyset.yaml command.

  2. Open the file and paste the configuration below into it:

    Baseline
    Restricted
    Restricted and Baseline
    apiVersion: policy.stackland.yandex.cloud/v1alpha1
    kind: ClusterPolicySet
    metadata:
      name: test-policyset
    spec:
      engines:
        kyverno:
          presets:
            - baseline # Platform preset
    
    apiVersion: policy.stackland.yandex.cloud/v1alpha1
    kind: ClusterPolicySet
    metadata:
      name: test-policyset
    spec:
      engines:
        kyverno:
          presets:
            - restricted  # Additional platform preset
    
    apiVersion: policy.stackland.yandex.cloud/v1alpha1
    kind: ClusterPolicySet
    metadata:
      name: test-policyset
    spec:
      engines:
        kyverno:
          presets:
            - baseline      # Platform preset
            - restricted    # Platform preset
    
  3. Apply the manifest: kubectl apply -f clusterpolicyset.yaml.

Using the management consoleUsing the management console

  1. In the left-hand menu, select Security policies.

  2. Go to the Settings tab.

  3. Toggle Policy check on.

  4. Under Kyverno, select the policy presets:

    • Baseline: Basic protection against misconfiguration.
    • Restricted: Strict adherence to the principle of least privilege.

    You can select one or both presets at the same time.

Click Open YAML editor to view or edit the ClusterPolicySet resource configuration.

This is it. Now Policy Manager will start sending notifications about policy violations.

Was the article helpful?

Previous
Disabling DataLens
Next
Deactivating a policy
© 2026 Direct Cursus Technology L.L.C.