Apply kustomize configurations to multiple clusters.
Build and apply kustomize overlays to or more clusters.
kustomize_build - Render kustomize output without applyingkustomize_apply - Build and apply to clusterskustomize_delete - Build and delete those resourcesUse the kustomize_apply tool with:
path: Path to directory containing kustomization.yaml (required)dry_run: Preview without applyingclusters: Target clusters (all if not specified)Build:
{
"path": "./overlays/production"
}
Apply to all clusters:
{
"path": "./overlays/production",
"dry_run": false
}
Delete from specific clusters:
{
"path": "./overlays/staging",
"clusters": ["staging-1", "staging-2"]
}
Requires either:
kustomize CLI installedkubectl with kustomize support (kubectl kustomize)