forked from LaconicNetwork/kompose
Fix failing openshift tests
This commit is contained in:
parent
c82b499b01
commit
386e2b9ec3
@ -169,6 +169,11 @@ func (o *OpenShift) initDeploymentConfig(name string, service kobject.ServiceCon
|
|||||||
podSpec = o.InitPodSpec(name, service, opt)
|
podSpec = o.InitPodSpec(name, service, opt)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// OpenShift: Set image to a space - actual image comes from ImageStream trigger
|
||||||
|
for i := range podSpec.Containers {
|
||||||
|
podSpec.Containers[i].Image = " "
|
||||||
|
}
|
||||||
|
|
||||||
dc := &deployapi.DeploymentConfig{
|
dc := &deployapi.DeploymentConfig{
|
||||||
TypeMeta: kapi.TypeMeta{
|
TypeMeta: kapi.TypeMeta{
|
||||||
Kind: "DeploymentConfig",
|
Kind: "DeploymentConfig",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user