Quick Start

Use this page to choose the right resource before creating compliance scans.

Prerequisites

  • Alauda Container Platform version: >= v4.1.0
  • Plugin version: >= v1.1.0

Choose a Resource

Use Scan when you want to run and manage a single compliance scan for one profile.

Use ScanSuite when you want to manage multiple profiles together, schedule recurring runs, or apply one template to a group of child Scan resources.

For detailed configuration, see Using Scan, Using ScanSuite, and Node Selection and Scheduling.

Quick Examples

Run a Single Scan

Use Scan for one profile at a time.

apiVersion: compliance.security.alauda.io/v1alpha1
kind: Scan
metadata:
  name: os-scan
  namespace: compliance-system
spec:
  profile: stig-os-microos

Run a ScanSuite

Use ScanSuite to create and manage multiple child Scan resources together.

apiVersion: compliance.security.alauda.io/v1alpha1
kind: ScanSuite
metadata:
  name: stig-scan
  namespace: compliance-system
spec:
  profiles:
    - stig-k8s-api-server
    - stig-k8s-control-plane
    - stig-k8s-general
    - stig-k8s-kubelet

Next Steps