Initial commit - 611 cybersecurity skills across all subdomains

This commit is contained in:
mukul975
2026-02-25 10:47:44 +01:00
commit 22a7ab1462
1765 changed files with 280648 additions and 0 deletions
@@ -0,0 +1,40 @@
# Helm Chart Security Review Checklist
## Chart Metadata
- [ ] Chart.yaml has accurate appVersion and version
- [ ] No deprecated API versions in templates
- [ ] Chart signed with GPG key
## Security Context Defaults
- [ ] runAsNonRoot: true
- [ ] readOnlyRootFilesystem: true
- [ ] allowPrivilegeEscalation: false
- [ ] capabilities.drop: ALL
- [ ] seccompProfile: RuntimeDefault
## Resource Management
- [ ] CPU limits set
- [ ] Memory limits set
- [ ] CPU requests set
- [ ] Memory requests set
## Image Security
- [ ] Image uses digest or pinned tag (not :latest)
- [ ] imagePullPolicy: Always
- [ ] Images from trusted registries only
## Secrets Handling
- [ ] No secrets in values.yaml
- [ ] External secrets integration configured
- [ ] ServiceAccount token auto-mount disabled
## Network
- [ ] NetworkPolicy template included
- [ ] hostNetwork: false
- [ ] hostPID: false
- [ ] hostIPC: false
## RBAC
- [ ] ServiceAccount created per release
- [ ] Minimal RBAC permissions
- [ ] No cluster-admin bindings