Description
The cds add containerize and cds add helm CLI commands have been removed in CDS 10. Their functionality is consolidated into the unified cds add kyma command, which generates container deployment artifacts including Helm charts and Dockerfiles for Kyma/Kubernetes deployments. Any script, CI/CD pipeline, or package.json entry that invokes the removed commands will fail with an unknown command error at runtime. The replacement command may produce slightly different artifacts — review the generated output before committing.
How to Check
- [ ] Search all files for the string
cds add containerize. - [ ] Search all files for the string
cds add helm. - [ ] Check
package.jsonscriptssection for these commands. - [ ] Check CI/CD pipeline files (
.github/workflows/*.yml,Jenkinsfile,azure-pipelines.yml). - [ ] Check shell scripts (
*.sh),Makefile, andmta.yamlfor these commands.
Migration Steps
Replace
cds add containerizewithcds add kymain all scripts:diff// package.json { "scripts": { - "containerize": "cds add containerize" + "containerize": "cds add kyma" } }Replace
cds add helmin CI/CD configs:diff# .github/workflows/deploy.yml - run: cds add helm + run: cds add kymaAfter replacing the command, review the generated Helm chart and Dockerfile output to confirm that the artifacts match the deployment requirements of your project. The
cds add kymacommand may generate a different directory layout or additional files compared to the removed commands.
Notes
Check the CDS 10 release notes for any configuration options accepted by cds add kyma that were previously passed to cds add containerize or cds add helm as flags.