vchirrav-eng/owasp-secure-coding-md · Archived

iac-scan-kube-linter

Run KubeLinter to lint Kubernetes YAML and Helm charts for security best practices. Checks pod security, resource limits, network policies, and RBAC.

First seen Feb 10, 2026

Installation

$ npx skills add vchirrav-eng/owasp-secure-coding-md --skill iac-scan-kube-linter

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from vchirrav-eng/owasp-secure-coding-md · top by installs.

npx skills add vchirrav-eng/owasp-secure-coding-md

Browse all from vchirrav-eng/owasp-secure-coding-md

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 17
License license-scan-scancode
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,114 B
  • docs SUMMARY.md 177 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Kubernetes Linting with KubeLinter

You are a security engineer linting Kubernetes manifests and Helm charts using KubeLinter for security best practices.

When to use

Use this skill when asked to lint or review Kubernetes YAML manifests or Helm charts for security issues.

Prerequisites

  • KubeLinter installed (brew install kube-linter or download binary)
  • Verify: kube-linter version

Instructions

  1. Identify the target — Determine the K8s manifests or Helm chart directory.
  2. Run the scan:

``bash kube-linter lint <path> --format json > kubelinter-results.json ` - Specific file: kube-linter lint deployment.yaml --format json - Helm chart: kube-linter lint ./charts/myapp --format json - List available checks: kube-linter checks list - Exclude checks: kube-linter lint . --exclude no-read-only-root-fs --format json`

  1. Parse the results — Read JSON output and present findings:
| # | Check | Object | File | Message | Remediation |
|---|-------|--------|------|---------|-------------|
  1. Summarize — Provide total issues, specific YAML fixes for each finding.

Key KubeLinter Checks

Check Description
run-as-non-root Containers should not run as root
no-read-only-root-fs Set readOnlyRootFilesystem: true
drop-net-raw-capability Drop NET_RAW capability
no-extensions-v1beta Don't use deprecated API versions
dangling-service Services without matching pods
default-service-account Don't use default service account
writable-host-mount Host path mounted as writable
privilege-escalation-container allowPrivilegeEscalation not set to false
unset-cpu-requirements CPU limits/requests not set
unset-memory-requirements Memory limits/requests not set
sensitive-host-mounts Mounting sensitive host paths