forked from LaconicNetwork/kompose
#### What type of PR is this? <!-- Add one of the following kinds: /kind bug /kind documentation /kind feature --> /kind cleanup #### What this PR does / why we need it: Removes the network policy annotation which is not needed (we are not generating network policy) #### Which issue(s) this PR fixes: <!-- *Automatically closes linked issue when PR is merged. Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`. --> Fixes https://github.com/kubernetes/kompose/issues/1759 #### Special notes for your reviewer:
101 lines
1.7 KiB
YAML
101 lines
1.7 KiB
YAML
---
|
|
apiVersion: apps.openshift.io/v1
|
|
kind: DeploymentConfig
|
|
metadata:
|
|
labels:
|
|
io.kompose.service: bar
|
|
name: bar
|
|
spec:
|
|
replicas: 99
|
|
selector:
|
|
io.kompose.service: bar
|
|
template:
|
|
metadata:
|
|
labels:
|
|
io.kompose.service: bar
|
|
spec:
|
|
containers:
|
|
- image: ' '
|
|
name: bar
|
|
restartPolicy: Always
|
|
test: false
|
|
triggers:
|
|
- type: ConfigChange
|
|
- imageChangeParams:
|
|
automatic: true
|
|
containerNames:
|
|
- bar
|
|
from:
|
|
kind: ImageStreamTag
|
|
name: bar:latest
|
|
type: ImageChange
|
|
|
|
---
|
|
apiVersion: image.openshift.io/v1
|
|
kind: ImageStream
|
|
metadata:
|
|
labels:
|
|
io.kompose.service: bar
|
|
name: bar
|
|
spec:
|
|
lookupPolicy:
|
|
local: false
|
|
tags:
|
|
- from:
|
|
kind: DockerImage
|
|
name: bar
|
|
name: latest
|
|
referencePolicy:
|
|
type: ""
|
|
|
|
---
|
|
apiVersion: apps.openshift.io/v1
|
|
kind: DeploymentConfig
|
|
metadata:
|
|
labels:
|
|
io.kompose.service: foo
|
|
name: foo
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
io.kompose.service: foo
|
|
template:
|
|
metadata:
|
|
labels:
|
|
io.kompose.service: foo
|
|
spec:
|
|
containers:
|
|
- image: ' '
|
|
name: foo
|
|
restartPolicy: Always
|
|
test: false
|
|
triggers:
|
|
- type: ConfigChange
|
|
- imageChangeParams:
|
|
automatic: true
|
|
containerNames:
|
|
- foo
|
|
from:
|
|
kind: ImageStreamTag
|
|
name: foo:latest
|
|
type: ImageChange
|
|
|
|
---
|
|
apiVersion: image.openshift.io/v1
|
|
kind: ImageStream
|
|
metadata:
|
|
labels:
|
|
io.kompose.service: foo
|
|
name: foo
|
|
spec:
|
|
lookupPolicy:
|
|
local: false
|
|
tags:
|
|
- from:
|
|
kind: DockerImage
|
|
name: foo
|
|
name: latest
|
|
referencePolicy:
|
|
type: ""
|
|
|