forked from LaconicNetwork/kompose
* fix: update loading 'env_file' of docker_compose Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com> * test: add functional tests for loading env_file Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com> --------- Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com>
59 lines
1.0 KiB
YAML
59 lines
1.0 KiB
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
io.kompose.service: bar
|
|
name: bar
|
|
namespace: default
|
|
spec:
|
|
replicas: 99
|
|
selector:
|
|
matchLabels:
|
|
io.kompose.service: bar
|
|
strategy: {}
|
|
template:
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
io.kompose.network/multiple-files-default: "true"
|
|
io.kompose.service: bar
|
|
spec:
|
|
containers:
|
|
- image: bar
|
|
name: bar
|
|
resources: {}
|
|
restartPolicy: Always
|
|
status: {}
|
|
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
io.kompose.service: foo
|
|
name: foo
|
|
namespace: default
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
io.kompose.service: foo
|
|
strategy: {}
|
|
template:
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
io.kompose.network/multiple-files-default: "true"
|
|
io.kompose.service: foo
|
|
spec:
|
|
containers:
|
|
- image: foo
|
|
name: foo
|
|
resources: {}
|
|
restartPolicy: Always
|
|
status: {}
|
|
|