HELM_STANDARDS

Constant HELM_STANDARDS 

Source
pub const HELM_STANDARDS: &str = r#"
## Helm Chart Best Practices

### File Structure
```
chart/
├── Chart.yaml
├── values.yaml
├── templates/
│   ├── deployment.yaml
│   ├── service.yaml
│   ├── configmap.yaml
│   ├── secret.yaml
│   ├── ingress.yaml
│   ├── _helpers.tpl
│   └── NOTES.txt
└── .helmignore
```

### Templates
- Use named templates in `_helpers.tpl`
- Include proper labels and selectors
- Support for resource limits
- Include probes (liveness, readiness)
- Support for horizontal pod autoscaling

### Values
- Provide sensible defaults
- Document all values
- Use nested structure for complex configs
"#;
Expand description

Get prompt for Helm-specific generation