Implement M3.6.1: DocCorpusSource with heading-boundary chunking (196 tests)

This commit is contained in:
Story Crater Bot
2026-08-23 09:42:09 -07:00
parent 54d1879464
commit de9c4ffeae
10 changed files with 1610 additions and 1 deletions
+45
View File
@@ -0,0 +1,45 @@
# kubectl Reference
Introduction to kubectl commands.
## Common Issues
Overview of common issues.
### CrashLoopBackOff
A pod is in CrashLoopBackOff when it repeatedly crashes.
**Symptoms:**
- Pod status shows CrashLoopBackOff
- Container restarts frequently
**Resolution:**
1. Check logs: `kubectl logs <pod>`
2. Check events: `kubectl describe pod <pod>`
### ImagePullBackOff
The container image cannot be pulled.
**Resolution:**
1. Verify image name and tag
2. Check registry credentials
## Best Practices
### Resource Limits
Always set resource limits on containers.
### Health Checks
Configure liveness and readiness probes.
#### Liveness Probes
Check if container is running.
#### Readiness Probes
Check if container is ready to serve traffic.