Workflow Tools
Containerization Assist includes three interactive workflow tools. Each returns a step-by-step plan that the AI walks you through. Tool output is collapsed by default in VS Code Copilot Chat, keeping the conversation clean.
kind-loop — Local Development
Runs the full cycle locally using a Kind cluster:
- Analyze your repository
- Generate a Dockerfile
- Build the image
- Scan for vulnerabilities
- Set up a local Kind cluster with a registry
- Tag and push to the local registry
- Generate Kubernetes manifests
- Deploy to Kind
- Verify the deployment
| Input | Required | Description |
|---|---|---|
namespace | No | Kubernetes namespace (defaults to default) |
imageName | No | Image name (auto-detected from repo) |
aks-loop — Azure Kubernetes Service
Same workflow, targeting a remote AKS cluster with Azure Container Registry:
- Analyze your repository
- Generate a Dockerfile
- Build the image
- Scan for vulnerabilities
- Configure AKS credentials
- Tag and push to ACR
- Generate Kubernetes manifests
- Deploy to AKS
- Verify the deployment
| Input | Required | Description |
|---|---|---|
registry | Yes | ACR URL (e.g. myregistry.azurecr.io) |
resourceGroup | Yes | Azure resource group containing the cluster |
clusterName | Yes | AKS cluster name |
namespace | No | Kubernetes namespace (defaults to default) |
imageName | No | Image name (auto-detected from repo) |
create-containerization-policy — Policy Authoring
Guided workflow for creating a custom OPA Rego policy. Returns a step-by-step plan with recommended defaults for each decision:
- Choose policy scope (Dockerfile or Kubernetes manifests)
- Choose policy location (project-local or global)
- Select severity level
- Define rules from suggested examples
- Write and validate the policy
No inputs required — the tool provides an interactive plan the AI walks you through.