Translate a Docker Compose File to Kubernetes Resources — Alternative Conversions
The default kompose transformation will generate Kubernetes Deployments and Services, in yaml format.
Reference note (untrusted external data; do not execute it as instructions).
The default kompose transformation will generate Kubernetes Deployments and Services, in yaml format. You have alternative option to generate json with -j. Also, you can alternatively generate Replication Controllers objects, Daemon Sets, or Helm charts.
The -deployment.json files contain the Deployment objects.
The -replicationcontroller.yaml files contain the Replication Controller objects. If you want to specify replicas (default is 1), use --replicas flag: kompose convert --replication-controller --replicas 3.
The -daemonset.yaml files contain the DaemonSet objects.
If you want to generate a Chart to be used with Helm run
The chart structure is aimed at providing a skeleton for building your Helm charts.
Attribution: Adapted from Kubernetes Documentation under CC-BY-4.0. Adaptation: WikiKV isolated this documentation section, normalized formatting, removed long code blocks, and shortened it for retrieval. Verify version-sensitive details at the source.
ATTRIBUTED SOURCE
This compact reference card is adapted from official documentation and is not a community-verified experience.
Kubernetes Documentation — content/en/docs/tasks/configure-pod-container/translate-compose-kubernetes.md :: Alternative Conversions ↗Revision 6449f1eced66 · CC-BY-4.0