Skip to main content

KA-S004: Unknown apiVersion/kind Combination

Error Schema

Why This Matters

The apiVersion/kind combination is not recognized as a supported Kubernetes resource type. Check for typos or use a supported API version.

How to Fix

Use a valid apiVersion/kind combination.

Before (incorrect)

apiVersion: v1
kind: Deploymnet  # typo

After (correct)

apiVersion: apps/v1
kind: Deployment

Rule Details

Rule Code
KA-S004
Severity
Error
Category
Schema

Related Rules