chart-patterns

├── values.schema.json # JSON Schema validation

Content Preview
# Helm Chart Patterns Reference

## Standard Chart Structure

### Minimal Production Chart

```
mychart/
├── Chart.yaml
├── values.yaml
├── .helmignore
└── templates/
    ├── _helpers.tpl
    ├── deployment.yaml
    ├── service.yaml
    ├── serviceaccount.yaml
    ├── NOTES.txt
    └── tests/
        └── test-connection.yaml
```

### Full Production Chart

```
mychart/
├── Chart.yaml
├── values.yaml
├── values.schema.json      # JSON Schema validation
├── .helmignore
├── templates/
│   ├── _help
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/chart-patterns.md \
  https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/helm-chart-builder/references/chart-patterns.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/alirezarezvani/claude-skills

Then reference at engineering/helm-chart-builder/references/chart-patterns.md

Related Skills