π Public Preview: This project is in Public Preview and ready for production use cases*. Core functionality is complete with stable APIs.
*Dynamic auto-scaling based on workflow load is not yet implemented. Use cases must work with fixed worker replica counts.
The Temporal Worker Controller makes it simple and safe to deploy Temporal workers on Kubernetes.
Temporal workflows require deterministic execution, which means updating worker code can break running workflows if the changes aren't backward compatible. Traditional deployment strategies force you to either risk breaking existing workflows or use Temporal's Patching API to maintain compatibility across versions.
Temporal's Worker Versioning feature solves this dilemma by providing programmatic control over worker versions and traffic routing. The Temporal Worker Controller automates a deployment system that uses Worker Versioning on Kubernetes. When you deploy new code, the controller automatically creates a new worker version while keeping the old version running. Existing workflows continue on the old version while new workflows use the new version. This approach eliminates the need for patches in many cases and ensures running workflows are never disrupted.
π Protected Pinned workflows - Workflows pinned to a version stay on that version and won't break
ποΈ Controlled rollout for AutoUpgrade workflows - AutoUpgrade workflows shifted to new versions with configurable safety controls
π¦ Automatic version management - Registers versions with Temporal, manages routing rules, and tracks version lifecycle
π― Smart traffic routing - New workflows automatically get routed to your target worker version
π‘οΈ Progressive rollouts - Catch incompatible changes early with small traffic percentages before they spread
β‘ Easy rollbacks - Instantly route traffic back to a previous version if issues are detected
Instead of this traditional approach where deployments can break running workflows:
# β Traditional deployment - risky for running workflows
apiVersion: apps/v1
kind: Deployment
metadata:
name: my-worker
spec:
template:
spec:
containers:
- name: worker
image: my-worker:v2.0.0 # This change might break existing workflows!
You define your worker like this:
# β
Temporal Worker Controller - safe deployments
apiVersion: temporal.io/v1alpha1
kind: TemporalWorkerDeployment
metadata:
name: my-worker
spec:
replicas: 3
rollout:
strategy: Progressive # Gradual, safe rollout
steps:
- rampPercentage: 10
pauseDuration: 5m
- rampPercentage: 50
pauseDuration: 10m
template:
spec:
containers:
- name: worker
image: my-worker:v2.0.0 # Safe to deploy!
When you update the image, the controller automatically:
- π Creates a new deployment with your updated worker
- π Gradually routes new workflows and AutoUpgrade workflows to the new version
- π Keeps Pinned workflows running on their original version (guaranteed safety)
- π§Ή Automatically scales down and cleans up old versions once they are drained
- Kubernetes cluster (1.19+)
- Temporal Server (Cloud or self-hosted v1.28.1)
- Basic familiarity with Temporal Workers, Workflows, and Worker Versioning
# Install using Helm in your preferred namespace
helm install temporal-worker-controller \
oci://docker.io/temporalio/temporal-worker-controller \
--namespace <your-namespace>
New to deploying workers with this controller? β Start with our Migration Guide to learn how to safely transition from traditional deployments.
Ready to dive deeper? β Check out the Architecture Guide to understand how the controller works, or the Temporal Worker Versioning docs to learn about the underlying Temporal feature.
Need configuration help? β See the Configuration Reference for all available options.
- β Registration of new Temporal Worker Deployment Versions
- β Creation of versioned Deployment resources (managing Pods that run your Temporal workers)
- β Automatic lifecycle scaling - Scales down worker versions when no longer needed
- β Deletion of resources associated with drained Worker Deployment Versions
- β
Multiple rollout strategies:
Manual
,AllAtOnce
, andProgressive
rollouts - β Gate workflows - Test new versions with a pre-deployment test before routing real traffic to them
- β³ Load-based auto-scaling - Not yet implemented (use fixed replica counts)
While Temporal's Worker Versioning feature solves deployment safety problems, using it manually requires:
- Manual API calls - Register versions, manage routing rules, track version states
- Infrastructure coordination - Deploy multiple Kubernetes resources for each version
- Lifecycle monitoring - Watch for drained versions and clean up resources
- Rollout orchestration - Manually control progressive traffic shifting
The Temporal Worker Controller eliminates this operational overhead by automating the entire Worker Versioning lifecycle on Kubernetes:
- Automatic Temporal integration - Registers versions and manages routing without manual API calls
- Kubernetes-native workflow - Update a single custom resource, get full rainbow deployments
- Intelligent cleanup - Monitors version drainage and automatically removes unused resources
- Built-in rollout strategies - Progressive, AllAtOnce, and Manual with configurable safety controls
Document | Description |
---|---|
Migration Guide | Step-by-step guide for migrating from traditional deployments |
Architecture | Technical deep-dive into how the controller works |
Configuration | Complete configuration reference |
Concepts | Key concepts and terminology |
Limits | Technical constraints and limitations |
Your workers need these environment variables (automatically set by the controller):
TEMPORAL_ADDRESS=your-temporal-server:7233
TEMPORAL_NAMESPACE=your-namespace
TEMPORAL_DEPLOYMENT_NAME=my-worker # Unique worker deployment name
TEMPORAL_WORKER_BUILD_ID=v1.2.3 # Version identifier
Important: Don't set the above environment variables manually - the controller manages these automatically.
We welcome all contributions! This includes:
- π§ Code contributions - Please start by opening an issue to discuss your idea
- π Bug reports - File an issue
- π‘ Feature requests - Tell us what you'd like to see
- π¬ Feedback - Join #safe-deploys on Temporal Slack
Want to try the controller locally? Check out the local demo guide for development setup.
This project is licensed under the MIT License.
Questions? Reach out to @jlegrone or the #safe-deploys channel on Temporal Slack!