Component Upgrade Guide
Current Version
Quick Upgrade Steps
1. Update Version
# Update component version in kustomization
cd components/component-name
sed -i 's/v1.2.3/v1.3.0/g' kustomization.yaml
# Commit and push
git add .
git commit -m "upgrade: component-name v1.2.3 -> v1.3.0"
git push
2. Verify Deployment
# Wait for Flux reconciliation
flux get kustomizations
# Check pods are healthy
kubectl get pods -n component-namespace
Breaking Changes
- List any breaking changes from release notes
- Configuration updates needed
- API changes to be aware of
Rollback
# Quick rollback if issues
kubectl rollout undo deployment/component-name -n component-namespace