forked from LaconicNetwork/kompose
* feat: add ns generation for k8s Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com> * feat: add ns generation for openshift Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com> * test: add functional tests Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com> * fix: remove some code nits Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com> --------- Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com>
97 lines
1.8 KiB
YAML
97 lines
1.8 KiB
YAML
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
io.kompose.service: test
|
|
name: test
|
|
namespace: default
|
|
spec:
|
|
ports:
|
|
- name: "80"
|
|
port: 80
|
|
targetPort: 80
|
|
selector:
|
|
io.kompose.service: test
|
|
status:
|
|
loadBalancer: {}
|
|
|
|
---
|
|
apiVersion: apps.openshift.io/v1
|
|
kind: DeploymentConfig
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
io.kompose.service: test
|
|
name: test
|
|
namespace: default
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
io.kompose.service: test
|
|
strategy:
|
|
resources: {}
|
|
template:
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
io.kompose.network/read-only-default: "true"
|
|
io.kompose.service: test
|
|
spec:
|
|
containers:
|
|
- image: ' '
|
|
name: test
|
|
ports:
|
|
- containerPort: 80
|
|
hostPort: 80
|
|
protocol: TCP
|
|
resources: {}
|
|
securityContext:
|
|
readOnlyRootFilesystem: true
|
|
restartPolicy: Always
|
|
test: false
|
|
triggers:
|
|
- type: ConfigChange
|
|
- imageChangeParams:
|
|
automatic: true
|
|
containerNames:
|
|
- test
|
|
from:
|
|
kind: ImageStreamTag
|
|
name: test:latest
|
|
type: ImageChange
|
|
status:
|
|
availableReplicas: 0
|
|
latestVersion: 0
|
|
observedGeneration: 0
|
|
replicas: 0
|
|
unavailableReplicas: 0
|
|
updatedReplicas: 0
|
|
|
|
---
|
|
apiVersion: image.openshift.io/v1
|
|
kind: ImageStream
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
io.kompose.service: test
|
|
name: test
|
|
namespace: default
|
|
spec:
|
|
lookupPolicy:
|
|
local: false
|
|
tags:
|
|
- annotations: null
|
|
from:
|
|
kind: DockerImage
|
|
name: alpine
|
|
generation: null
|
|
importPolicy: {}
|
|
name: latest
|
|
referencePolicy:
|
|
type: ""
|
|
status:
|
|
dockerImageRepository: ""
|
|
|