forked from LaconicNetwork/kompose
* fix: make the out flag print to one file using seperator * fix: comment an unused function * fix: update test script * fix: update output k8s * fix: update the json output error condition * fix: update envvars interpolation tests * chore: update e2e tests to support yaml generation instead of JSON format * fix: update e2e tests according to ci environment * fix: apply PR changes
54 lines
912 B
YAML
54 lines
912 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
io.kompose.service: bar
|
|
name: bar
|
|
spec:
|
|
replicas: 99
|
|
selector:
|
|
matchLabels:
|
|
io.kompose.service: bar
|
|
strategy: {}
|
|
template:
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
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
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
io.kompose.service: foo
|
|
strategy: {}
|
|
template:
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
io.kompose.service: foo
|
|
spec:
|
|
containers:
|
|
- image: foo
|
|
name: foo
|
|
resources: {}
|
|
restartPolicy: Always
|
|
status: {}
|