- workshop: First working version without some code for the workshop.
- v0.1.0: First working versions.
- v0.2.0: Optimized version for secret retrieval.
- Explain the problem to solve.
- Controller Concepts
- Edge and level trigger (1, 2)
- Reconciliation
- Explain controller components (1, 2).
- ListerWatcher
- Handler
- Queue (ID and cache) and workers.
- Optimizations made on the Listers.
- What is Kooper and alternatives.
- Explain project structure.
git clone git@github.com:slok/imagepull-controller-workshop.git && cd ./imagepull-controller-workshop
git checkout workshop
- Implement Retriever.
- Implement Handler.
- Test with local cluster using kind.
kind create cluster
kubectl apply -f ./tests/manual/secret.yaml
go run ./cmd/imagepull-controller-workshop/ -r default --secret-name test-imagepull-credentials --development
- Metrics.
- Unit testing.
- Secret.
- Caching (Check v0.2.0).
- Update on change (Secret controller).
- Service account.
- Update on change instead of ensuring.
- Explain garbage collection.
- Owner reference.
- Finalizers.
- Creating an Operator.
- Production ready operator example (Bilrost).