Kubernetes Apply
Apply Kubernetes manifests directly to the cluster without using a managed release strategy.
Kubernetes Canary Deploy
Deploy a subset of pods with the new version alongside the stable version for validation before a full rollout.
Kubernetes Blue Green Swap Services Selectors
Switch Kubernetes service selectors to route production traffic to the new pod set after a blue-green deploy.
Kubernetes Rolling Deploy
Prepare manifests, apply them to the cluster, and wait for all pods to reach steady state.
Kubernetes Delete
Delete Kubernetes resources by name, manifest path, or release name.
Kubernetes Steady State Check
Wait for Kubernetes workloads to reach a healthy running state after a deployment or scale operation.
Kubernetes Rolling Rollback
Re-apply the previous release manifests to roll back a failed rolling or canary deployment.
Kubernetes Diff
Compare the current state of the cluster with the desired state defined in your manifests.
Kubernetes Traffic Shift step
Shift traffic between service versions using Istio VirtualServices or Kubernetes Gateway API HTTPRoutes.
Kubernetes Scale
Scale a Kubernetes workload to a specific number of instances or a percentage of current instances.
Kubernetes Blue Green Deploy
Deploy the new version to the stage pod set and wait for it to reach steady state before a traffic swap.
Kubernetes Patch
Modify a specific Kubernetes workload in place without redeploying the full manifest.
Kubernetes Dry Run
Validate Kubernetes manifests against the cluster without applying changes.
Kubernetes Rollout
Run kubectl rollout subcommands against Kubernetes workloads identified by name, manifest path, or release name.
Kubernetes Canary Delete
Remove the canary workload after validation or on rollback.
Kubernetes Blue Green Stage Scale Down
Clean up the old pod set after a successful blue-green swap to free cluster resources.