-
Notifications
You must be signed in to change notification settings - Fork 794
Closed
Labels
kind/bugCategorizes issue or PR as related to a bug.Categorizes issue or PR as related to a bug.
Description
Expected Behavior
docker-compose:
version: "3"
services:
pod:
image: busybox
env_file:
- "envs/pod.env"
restart: "no"
deployment:
image: busybox
env_file:
- "envs/deployment.env"
restart: "always"- Should create 2 ConfigMaps: envs-deployment-env & envs-pod-env.
Actual Behavior
Creates only 1 ConfigMap: envs-deployment-env
- in Windows it fails to create any ConfigMap.
reason: service.EnvFile is not relative and it cause issues with some functions.
Steps To Reproduce
- Create envs directory
- Create 2 files envs/deployment.env and envs/pod.env with the contents of
TEST=TEST - Run command:
kompose convert
Kompose Version
1.30.0
Branch: main
Commit: 17fbe3b4632cca0f61a7fda5f3b91034cdf5c5e4
Docker-Compose file
version: "3"
services:
pod:
image: busybox
env_file:
- "envs/pod.env"
restart: "no"
deployment:
image: busybox
env_file:
- "envs/deployment.env"
restart: "always"Anything else?
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
kind/bugCategorizes issue or PR as related to a bug.Categorizes issue or PR as related to a bug.