Skip to main content

KA-S005: Schema Validation Error

Error Schema

Why This Matters

The resource does not conform to the Kubernetes JSON Schema for its resource type. Check the field name, type, and value against the Kubernetes API documentation.

How to Fix

Fix the schema validation error for the specific field.

Before (incorrect)

spec:
  replicas: "three"  # should be number

After (correct)

spec:
  replicas: 3

Rule Details

Rule Code
KA-S005
Severity
Error
Category
Schema

Related Rules