diff --git a/pkg/transformer/utils.go b/pkg/transformer/utils.go index 7caba1d3..6b71de16 100644 --- a/pkg/transformer/utils.go +++ b/pkg/transformer/utils.go @@ -22,6 +22,7 @@ import ( "os/exec" "path" "path/filepath" + "regexp" "strings" dockerlib "github.com/fsouza/go-dockerclient" @@ -274,6 +275,10 @@ func ConfigAnnotations(service kobject.ServiceConfig) map[string]string { // Print either prints to stdout or to file/s func Print(name, path string, trailing string, data []byte, toStdout, generateJSON bool, f *os.File, provider string) (string, error) { file := "" + // TODO: we should refactor / change this hack in the future once we have a better solution + re := regexp.MustCompile(`(?s)status:.*`) + data = re.ReplaceAll(data, nil) + if generateJSON { file = fmt.Sprintf("%s-%s.json", name, trailing) } else { diff --git a/script/test/fixtures/change-in-volume/output-k8s-empty-vols-template.yaml b/script/test/fixtures/change-in-volume/output-k8s-empty-vols-template.yaml index 673e998f..13cdc711 100644 --- a/script/test/fixtures/change-in-volume/output-k8s-empty-vols-template.yaml +++ b/script/test/fixtures/change-in-volume/output-k8s-empty-vols-template.yaml @@ -16,8 +16,7 @@ spec: targetPort: 0 selector: io.kompose.service: redis -status: - loadBalancer: {} + --- apiVersion: v1 @@ -34,8 +33,7 @@ spec: targetPort: 5000 selector: io.kompose.service: web -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -67,7 +65,7 @@ spec: name: redis resources: {} restartPolicy: Always -status: {} + --- apiVersion: apps/v1 @@ -109,5 +107,5 @@ spec: volumes: - emptyDir: {} name: code-volume -status: {} + diff --git a/script/test/fixtures/change-in-volume/output-k8s.yaml b/script/test/fixtures/change-in-volume/output-k8s.yaml index 673e998f..13cdc711 100644 --- a/script/test/fixtures/change-in-volume/output-k8s.yaml +++ b/script/test/fixtures/change-in-volume/output-k8s.yaml @@ -16,8 +16,7 @@ spec: targetPort: 0 selector: io.kompose.service: redis -status: - loadBalancer: {} + --- apiVersion: v1 @@ -34,8 +33,7 @@ spec: targetPort: 5000 selector: io.kompose.service: web -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -67,7 +65,7 @@ spec: name: redis resources: {} restartPolicy: Always -status: {} + --- apiVersion: apps/v1 @@ -109,5 +107,5 @@ spec: volumes: - emptyDir: {} name: code-volume -status: {} + diff --git a/script/test/fixtures/change-in-volume/output-os-empty-vols-template.yaml b/script/test/fixtures/change-in-volume/output-os-empty-vols-template.yaml index 40061b7a..9ebeb8e8 100644 --- a/script/test/fixtures/change-in-volume/output-os-empty-vols-template.yaml +++ b/script/test/fixtures/change-in-volume/output-os-empty-vols-template.yaml @@ -16,8 +16,7 @@ spec: targetPort: 0 selector: io.kompose.service: redis -status: - loadBalancer: {} + --- apiVersion: v1 @@ -34,8 +33,7 @@ spec: targetPort: 5000 selector: io.kompose.service: web -status: - loadBalancer: {} + --- apiVersion: apps.openshift.io/v1 @@ -76,13 +74,7 @@ spec: kind: ImageStreamTag name: redis:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -105,8 +97,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: apps.openshift.io/v1 @@ -159,13 +150,7 @@ spec: kind: ImageStreamTag name: web:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -188,6 +173,5 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + diff --git a/script/test/fixtures/change-in-volume/output-os.yaml b/script/test/fixtures/change-in-volume/output-os.yaml index 40061b7a..9ebeb8e8 100644 --- a/script/test/fixtures/change-in-volume/output-os.yaml +++ b/script/test/fixtures/change-in-volume/output-os.yaml @@ -16,8 +16,7 @@ spec: targetPort: 0 selector: io.kompose.service: redis -status: - loadBalancer: {} + --- apiVersion: v1 @@ -34,8 +33,7 @@ spec: targetPort: 5000 selector: io.kompose.service: web -status: - loadBalancer: {} + --- apiVersion: apps.openshift.io/v1 @@ -76,13 +74,7 @@ spec: kind: ImageStreamTag name: redis:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -105,8 +97,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: apps.openshift.io/v1 @@ -159,13 +150,7 @@ spec: kind: ImageStreamTag name: web:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -188,6 +173,5 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + diff --git a/script/test/fixtures/compose-env-interpolation/output-k8s.yaml b/script/test/fixtures/compose-env-interpolation/output-k8s.yaml index 4bdcc1c1..f1a33b5a 100644 --- a/script/test/fixtures/compose-env-interpolation/output-k8s.yaml +++ b/script/test/fixtures/compose-env-interpolation/output-k8s.yaml @@ -15,8 +15,7 @@ spec: targetPort: 80 selector: io.kompose.service: foo -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -53,5 +52,5 @@ spec: protocol: TCP resources: {} restartPolicy: Always -status: {} + diff --git a/script/test/fixtures/compose-file-support/output-k8s.yaml b/script/test/fixtures/compose-file-support/output-k8s.yaml index 1ca00e60..b0df54af 100644 --- a/script/test/fixtures/compose-file-support/output-k8s.yaml +++ b/script/test/fixtures/compose-file-support/output-k8s.yaml @@ -13,8 +13,7 @@ spec: targetPort: 80 selector: io.kompose.service: web -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -46,5 +45,5 @@ spec: protocol: TCP resources: {} restartPolicy: Always -status: {} + diff --git a/script/test/fixtures/configmap-volume/output-k8s-withlabel.yaml b/script/test/fixtures/configmap-volume/output-k8s-withlabel.yaml index 5e3c9d33..cbc4f995 100644 --- a/script/test/fixtures/configmap-volume/output-k8s-withlabel.yaml +++ b/script/test/fixtures/configmap-volume/output-k8s-withlabel.yaml @@ -40,7 +40,7 @@ spec: path: configs.tar name: db-cm0 name: db-cm0 -status: {} + --- apiVersion: v1 @@ -102,7 +102,7 @@ spec: path: test-a-key.key name: web-cm1 name: web-cm1 -status: {} + --- apiVersion: v1 diff --git a/script/test/fixtures/configmap-volume/output-k8s.yaml b/script/test/fixtures/configmap-volume/output-k8s.yaml index 4baf157a..cb151b4a 100644 --- a/script/test/fixtures/configmap-volume/output-k8s.yaml +++ b/script/test/fixtures/configmap-volume/output-k8s.yaml @@ -36,7 +36,7 @@ spec: path: configs.tar name: db-cm0 name: db-cm0 -status: {} + --- apiVersion: v1 @@ -94,7 +94,7 @@ spec: path: test-a-key.key name: web-cm1 name: web-cm1 -status: {} + --- apiVersion: v1 diff --git a/script/test/fixtures/configmap-volume/output-os-withlabel.yaml b/script/test/fixtures/configmap-volume/output-os-withlabel.yaml index 4ab7aa8a..ec34dce7 100644 --- a/script/test/fixtures/configmap-volume/output-os-withlabel.yaml +++ b/script/test/fixtures/configmap-volume/output-os-withlabel.yaml @@ -49,13 +49,7 @@ spec: kind: ImageStreamTag name: db:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -78,8 +72,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: v1 @@ -150,13 +143,7 @@ spec: kind: ImageStreamTag name: web:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -179,8 +166,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: v1 diff --git a/script/test/fixtures/configmap-volume/output-os.yaml b/script/test/fixtures/configmap-volume/output-os.yaml index c1a9628e..5a3a7d06 100644 --- a/script/test/fixtures/configmap-volume/output-os.yaml +++ b/script/test/fixtures/configmap-volume/output-os.yaml @@ -47,13 +47,7 @@ spec: kind: ImageStreamTag name: db:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -76,8 +70,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: v1 @@ -146,13 +139,7 @@ spec: kind: ImageStreamTag name: web:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -175,8 +162,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: v1 diff --git a/script/test/fixtures/deploy/placement/output-placement-k8s.yaml b/script/test/fixtures/deploy/placement/output-placement-k8s.yaml index 8005d35e..023edb88 100644 --- a/script/test/fixtures/deploy/placement/output-placement-k8s.yaml +++ b/script/test/fixtures/deploy/placement/output-placement-k8s.yaml @@ -13,8 +13,7 @@ spec: targetPort: 6379 selector: io.kompose.service: redis -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -75,5 +74,5 @@ spec: maxSkew: 1 topologyKey: ssd whenUnsatisfiable: ScheduleAnyway -status: {} + diff --git a/script/test/fixtures/deploy/placement/output-placement-os.yaml b/script/test/fixtures/deploy/placement/output-placement-os.yaml index d59f6b4f..13aa8541 100644 --- a/script/test/fixtures/deploy/placement/output-placement-os.yaml +++ b/script/test/fixtures/deploy/placement/output-placement-os.yaml @@ -13,8 +13,7 @@ spec: targetPort: 6379 selector: io.kompose.service: redis -status: - loadBalancer: {} + --- apiVersion: apps.openshift.io/v1 @@ -86,13 +85,7 @@ spec: kind: ImageStreamTag name: redis:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -115,6 +108,5 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + diff --git a/script/test/fixtures/env-multiple/output-k8s.yaml b/script/test/fixtures/env-multiple/output-k8s.yaml index d61ada19..ae3d7bb3 100644 --- a/script/test/fixtures/env-multiple/output-k8s.yaml +++ b/script/test/fixtures/env-multiple/output-k8s.yaml @@ -16,8 +16,7 @@ spec: targetPort: 8020 selector: io.kompose.service: another-namenode -status: - loadBalancer: {} + --- apiVersion: v1 @@ -37,8 +36,7 @@ spec: targetPort: 8020 selector: io.kompose.service: namenode -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -79,7 +77,7 @@ spec: protocol: TCP resources: {} restartPolicy: Always -status: {} + --- apiVersion: v1 @@ -144,5 +142,5 @@ spec: protocol: TCP resources: {} restartPolicy: Always -status: {} + diff --git a/script/test/fixtures/env-multiple/output-os.yaml b/script/test/fixtures/env-multiple/output-os.yaml index 57c42676..7559184e 100644 --- a/script/test/fixtures/env-multiple/output-os.yaml +++ b/script/test/fixtures/env-multiple/output-os.yaml @@ -16,8 +16,7 @@ spec: targetPort: 8020 selector: io.kompose.service: another-namenode -status: - loadBalancer: {} + --- apiVersion: v1 @@ -37,8 +36,7 @@ spec: targetPort: 8020 selector: io.kompose.service: namenode -status: - loadBalancer: {} + --- apiVersion: v1 @@ -112,13 +110,7 @@ spec: kind: ImageStreamTag name: another-namenode:2.0.0-hadoop2.7.4-java8 type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -141,8 +133,7 @@ spec: name: 2.0.0-hadoop2.7.4-java8 referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: apps.openshift.io/v1 @@ -196,13 +187,7 @@ spec: kind: ImageStreamTag name: namenode:2.0.0-hadoop2.7.4-java8 type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -225,6 +210,5 @@ spec: name: 2.0.0-hadoop2.7.4-java8 referencePolicy: type: "" -status: - dockerImageRepository: "" + diff --git a/script/test/fixtures/env/output-k8s.yaml b/script/test/fixtures/env/output-k8s.yaml index f53119da..463d41da 100644 --- a/script/test/fixtures/env/output-k8s.yaml +++ b/script/test/fixtures/env/output-k8s.yaml @@ -16,8 +16,7 @@ spec: targetPort: 8020 selector: io.kompose.service: another-namenode -status: - loadBalancer: {} + --- apiVersion: v1 @@ -37,8 +36,7 @@ spec: targetPort: 8020 selector: io.kompose.service: namenode -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -84,7 +82,7 @@ spec: protocol: TCP resources: {} restartPolicy: Always -status: {} + --- apiVersion: v1 @@ -144,5 +142,5 @@ spec: protocol: TCP resources: {} restartPolicy: Always -status: {} + diff --git a/script/test/fixtures/env/output-os.yaml b/script/test/fixtures/env/output-os.yaml index 487b5710..968e87bd 100644 --- a/script/test/fixtures/env/output-os.yaml +++ b/script/test/fixtures/env/output-os.yaml @@ -16,8 +16,7 @@ spec: targetPort: 8020 selector: io.kompose.service: another-namenode -status: - loadBalancer: {} + --- apiVersion: v1 @@ -37,8 +36,7 @@ spec: targetPort: 8020 selector: io.kompose.service: namenode -status: - loadBalancer: {} + --- apiVersion: v1 @@ -107,13 +105,7 @@ spec: kind: ImageStreamTag name: another-namenode:2.0.0-hadoop2.7.4-java8 type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -136,8 +128,7 @@ spec: name: 2.0.0-hadoop2.7.4-java8 referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: apps.openshift.io/v1 @@ -196,13 +187,7 @@ spec: kind: ImageStreamTag name: namenode:2.0.0-hadoop2.7.4-java8 type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -225,6 +210,5 @@ spec: name: 2.0.0-hadoop2.7.4-java8 referencePolicy: type: "" -status: - dockerImageRepository: "" + diff --git a/script/test/fixtures/envvars-interpolation/output-k8s.yaml b/script/test/fixtures/envvars-interpolation/output-k8s.yaml index d9ccbd06..66e98312 100644 --- a/script/test/fixtures/envvars-interpolation/output-k8s.yaml +++ b/script/test/fixtures/envvars-interpolation/output-k8s.yaml @@ -32,5 +32,5 @@ spec: name: myservice resources: {} restartPolicy: Always -status: {} + diff --git a/script/test/fixtures/envvars-interpolation/output-os.yaml b/script/test/fixtures/envvars-interpolation/output-os.yaml index f2113d65..5a068904 100644 --- a/script/test/fixtures/envvars-interpolation/output-os.yaml +++ b/script/test/fixtures/envvars-interpolation/output-os.yaml @@ -43,13 +43,7 @@ spec: kind: ImageStreamTag name: myservice:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -72,6 +66,5 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + diff --git a/script/test/fixtures/expose/output-k8s.yaml b/script/test/fixtures/expose/output-k8s.yaml index 52ad4c7d..4688b43b 100644 --- a/script/test/fixtures/expose/output-k8s.yaml +++ b/script/test/fixtures/expose/output-k8s.yaml @@ -13,8 +13,7 @@ spec: targetPort: 6379 selector: io.kompose.service: redis -status: - loadBalancer: {} + --- apiVersion: v1 @@ -35,8 +34,7 @@ spec: targetPort: 5000 selector: io.kompose.service: web -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -67,7 +65,7 @@ spec: protocol: TCP resources: {} restartPolicy: Always -status: {} + --- apiVersion: apps/v1 @@ -107,7 +105,7 @@ spec: protocol: TCP resources: {} restartPolicy: Always -status: {} + --- apiVersion: networking.k8s.io/v1 @@ -149,6 +147,5 @@ spec: - batman.example.com - batwoman.example.com secretName: test-secret -status: - loadBalancer: {} + diff --git a/script/test/fixtures/expose/output-os.yaml b/script/test/fixtures/expose/output-os.yaml index 149ceab4..d647dbcf 100644 --- a/script/test/fixtures/expose/output-os.yaml +++ b/script/test/fixtures/expose/output-os.yaml @@ -13,8 +13,7 @@ spec: targetPort: 6379 selector: io.kompose.service: redis -status: - loadBalancer: {} + --- apiVersion: v1 @@ -35,8 +34,7 @@ spec: targetPort: 5000 selector: io.kompose.service: web -status: - loadBalancer: {} + --- apiVersion: apps.openshift.io/v1 @@ -78,13 +76,7 @@ spec: kind: ImageStreamTag name: redis:3.0 type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -107,8 +99,7 @@ spec: name: "3.0" referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: apps.openshift.io/v1 @@ -155,13 +146,7 @@ spec: kind: ImageStreamTag name: web:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -184,8 +169,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: v1 @@ -203,6 +187,4 @@ spec: kind: Service name: web weight: null -status: - ingress: null diff --git a/script/test/fixtures/external-traffic-policy/output-k8s-v1.yaml b/script/test/fixtures/external-traffic-policy/output-k8s-v1.yaml index aabc5a9a..180fa533 100644 --- a/script/test/fixtures/external-traffic-policy/output-k8s-v1.yaml +++ b/script/test/fixtures/external-traffic-policy/output-k8s-v1.yaml @@ -20,8 +20,7 @@ spec: selector: io.kompose.service: front-end type: LoadBalancer -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -66,5 +65,5 @@ spec: protocol: TCP resources: {} restartPolicy: Always -status: {} + diff --git a/script/test/fixtures/external-traffic-policy/output-k8s-v2.yaml b/script/test/fixtures/external-traffic-policy/output-k8s-v2.yaml index 391e21bb..97a530b5 100644 --- a/script/test/fixtures/external-traffic-policy/output-k8s-v2.yaml +++ b/script/test/fixtures/external-traffic-policy/output-k8s-v2.yaml @@ -20,8 +20,7 @@ spec: selector: io.kompose.service: front-end type: ClusterIP -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -66,7 +65,7 @@ spec: protocol: TCP resources: {} restartPolicy: Always -status: {} + --- apiVersion: networking.k8s.io/v1 @@ -94,6 +93,5 @@ spec: number: 80 path: / pathType: Prefix -status: - loadBalancer: {} + diff --git a/script/test/fixtures/external-traffic-policy/output-os-v1.yaml b/script/test/fixtures/external-traffic-policy/output-os-v1.yaml index 6ce6a5df..5104183d 100644 --- a/script/test/fixtures/external-traffic-policy/output-os-v1.yaml +++ b/script/test/fixtures/external-traffic-policy/output-os-v1.yaml @@ -20,8 +20,7 @@ spec: selector: io.kompose.service: front-end type: LoadBalancer -status: - loadBalancer: {} + --- apiVersion: apps.openshift.io/v1 @@ -72,13 +71,7 @@ spec: kind: ImageStreamTag name: front-end:v4 type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -101,6 +94,5 @@ spec: name: v4 referencePolicy: type: "" -status: - dockerImageRepository: "" + diff --git a/script/test/fixtures/external-traffic-policy/output-os-v2.yaml b/script/test/fixtures/external-traffic-policy/output-os-v2.yaml index 49f64791..8dee1bf0 100644 --- a/script/test/fixtures/external-traffic-policy/output-os-v2.yaml +++ b/script/test/fixtures/external-traffic-policy/output-os-v2.yaml @@ -20,8 +20,7 @@ spec: selector: io.kompose.service: front-end type: ClusterIP -status: - loadBalancer: {} + --- apiVersion: apps.openshift.io/v1 @@ -72,13 +71,7 @@ spec: kind: ImageStreamTag name: front-end:v4 type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -101,8 +94,7 @@ spec: name: v4 referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: v1 @@ -120,6 +112,4 @@ spec: kind: Service name: front-end weight: null -status: - ingress: null diff --git a/script/test/fixtures/fsgroup/output-k8s.yaml b/script/test/fixtures/fsgroup/output-k8s.yaml index 51ad5d6d..b2781e96 100644 --- a/script/test/fixtures/fsgroup/output-k8s.yaml +++ b/script/test/fixtures/fsgroup/output-k8s.yaml @@ -43,7 +43,7 @@ spec: - name: pgadmin-data persistentVolumeClaim: claimName: pgadmin-data -status: {} + --- apiVersion: v1 @@ -59,4 +59,4 @@ spec: resources: requests: storage: 100Mi -status: {} + diff --git a/script/test/fixtures/fsgroup/output-os.yaml b/script/test/fixtures/fsgroup/output-os.yaml index acd7174c..dd4eb65c 100644 --- a/script/test/fixtures/fsgroup/output-os.yaml +++ b/script/test/fixtures/fsgroup/output-os.yaml @@ -52,13 +52,7 @@ spec: kind: ImageStreamTag name: pgadmin:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -81,8 +75,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: v1 @@ -98,4 +91,4 @@ spec: resources: requests: storage: 100Mi -status: {} + diff --git a/script/test/fixtures/healthcheck/output-healthcheck-k8s.yaml b/script/test/fixtures/healthcheck/output-healthcheck-k8s.yaml index 9c8115a1..7b187311 100644 --- a/script/test/fixtures/healthcheck/output-healthcheck-k8s.yaml +++ b/script/test/fixtures/healthcheck/output-healthcheck-k8s.yaml @@ -20,8 +20,7 @@ spec: targetPort: 27017 selector: io.kompose.service: mongo -status: - loadBalancer: {} + --- apiVersion: v1 @@ -45,8 +44,7 @@ spec: targetPort: 3306 selector: io.kompose.service: mysql -status: - loadBalancer: {} + --- apiVersion: v1 @@ -71,8 +69,7 @@ spec: targetPort: 5432 selector: io.kompose.service: postgresql -status: - loadBalancer: {} + --- apiVersion: v1 @@ -94,8 +91,7 @@ spec: targetPort: 6379 selector: io.kompose.service: redis -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -152,7 +148,7 @@ spec: timeoutSeconds: 1 resources: {} restartPolicy: Always -status: {} + --- apiVersion: apps/v1 @@ -209,7 +205,7 @@ spec: timeoutSeconds: 2 resources: {} restartPolicy: Always -status: {} + --- apiVersion: apps/v1 @@ -270,7 +266,7 @@ spec: timeoutSeconds: 1 resources: {} restartPolicy: Always -status: {} + --- apiVersion: apps/v1 @@ -326,5 +322,5 @@ spec: timeoutSeconds: 1 resources: {} restartPolicy: Always -status: {} + diff --git a/script/test/fixtures/healthcheck/output-healthcheck-os.yaml b/script/test/fixtures/healthcheck/output-healthcheck-os.yaml index a4a29a6b..bf29a66f 100644 --- a/script/test/fixtures/healthcheck/output-healthcheck-os.yaml +++ b/script/test/fixtures/healthcheck/output-healthcheck-os.yaml @@ -20,8 +20,7 @@ spec: targetPort: 27017 selector: io.kompose.service: mongo -status: - loadBalancer: {} + --- apiVersion: v1 @@ -45,8 +44,7 @@ spec: targetPort: 3306 selector: io.kompose.service: mysql -status: - loadBalancer: {} + --- apiVersion: v1 @@ -71,8 +69,7 @@ spec: targetPort: 5432 selector: io.kompose.service: postgresql -status: - loadBalancer: {} + --- apiVersion: v1 @@ -94,8 +91,7 @@ spec: targetPort: 6379 selector: io.kompose.service: redis -status: - loadBalancer: {} + --- apiVersion: apps.openshift.io/v1 @@ -156,13 +152,7 @@ spec: kind: ImageStreamTag name: mongo:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -185,8 +175,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: apps.openshift.io/v1 @@ -247,13 +236,7 @@ spec: kind: ImageStreamTag name: mysql:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -276,8 +259,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: apps.openshift.io/v1 @@ -341,13 +323,7 @@ spec: kind: ImageStreamTag name: postgresql:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -370,8 +346,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: apps.openshift.io/v1 @@ -433,13 +408,7 @@ spec: kind: ImageStreamTag name: redis:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -462,6 +431,5 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + diff --git a/script/test/fixtures/host-port-protocol/output-k8s.yaml b/script/test/fixtures/host-port-protocol/output-k8s.yaml index 8af386f1..fe317969 100644 --- a/script/test/fixtures/host-port-protocol/output-k8s.yaml +++ b/script/test/fixtures/host-port-protocol/output-k8s.yaml @@ -13,8 +13,7 @@ spec: targetPort: 80 selector: io.kompose.service: nginx -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -46,5 +45,5 @@ spec: protocol: TCP resources: {} restartPolicy: Always -status: {} + diff --git a/script/test/fixtures/host-port-protocol/output-os.yaml b/script/test/fixtures/host-port-protocol/output-os.yaml index e1659373..a97f330c 100644 --- a/script/test/fixtures/host-port-protocol/output-os.yaml +++ b/script/test/fixtures/host-port-protocol/output-os.yaml @@ -13,8 +13,7 @@ spec: targetPort: 80 selector: io.kompose.service: nginx -status: - loadBalancer: {} + --- apiVersion: apps.openshift.io/v1 @@ -57,13 +56,7 @@ spec: kind: ImageStreamTag name: nginx:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -86,6 +79,5 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + diff --git a/script/test/fixtures/multiple-files/output-k8s.yaml b/script/test/fixtures/multiple-files/output-k8s.yaml index 165a54c8..57ada9d4 100644 --- a/script/test/fixtures/multiple-files/output-k8s.yaml +++ b/script/test/fixtures/multiple-files/output-k8s.yaml @@ -24,7 +24,7 @@ spec: name: bar resources: {} restartPolicy: Always -status: {} + --- apiVersion: apps/v1 @@ -52,5 +52,5 @@ spec: name: foo resources: {} restartPolicy: Always -status: {} + diff --git a/script/test/fixtures/multiple-files/output-os.yaml b/script/test/fixtures/multiple-files/output-os.yaml index d673d065..c9f1ab26 100644 --- a/script/test/fixtures/multiple-files/output-os.yaml +++ b/script/test/fixtures/multiple-files/output-os.yaml @@ -35,13 +35,7 @@ spec: kind: ImageStreamTag name: bar:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -64,8 +58,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: apps.openshift.io/v1 @@ -104,13 +97,7 @@ spec: kind: ImageStreamTag name: foo:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -133,6 +120,5 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + diff --git a/script/test/fixtures/multiple-type-volumes/output-k8s.yaml b/script/test/fixtures/multiple-type-volumes/output-k8s.yaml index 40690d2a..1e928200 100644 --- a/script/test/fixtures/multiple-type-volumes/output-k8s.yaml +++ b/script/test/fixtures/multiple-type-volumes/output-k8s.yaml @@ -36,7 +36,7 @@ spec: - name: db-data persistentVolumeClaim: claimName: db-data -status: {} + --- apiVersion: v1 @@ -52,7 +52,7 @@ spec: resources: requests: storage: 100Mi -status: {} + --- apiVersion: apps/v1 @@ -101,7 +101,7 @@ spec: path: test-a-key.key name: web-cm1 name: web-cm1 -status: {} + --- apiVersion: v1 diff --git a/script/test/fixtures/multiple-type-volumes/output-os.yaml b/script/test/fixtures/multiple-type-volumes/output-os.yaml index 9a4c7b76..0b076b18 100644 --- a/script/test/fixtures/multiple-type-volumes/output-os.yaml +++ b/script/test/fixtures/multiple-type-volumes/output-os.yaml @@ -45,13 +45,7 @@ spec: kind: ImageStreamTag name: db:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -74,8 +68,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: v1 @@ -91,7 +84,7 @@ spec: resources: requests: storage: 100Mi -status: {} + --- apiVersion: apps.openshift.io/v1 @@ -149,13 +142,7 @@ spec: kind: ImageStreamTag name: web:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -178,8 +165,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: v1 diff --git a/script/test/fixtures/namespace/output-k8s.yaml b/script/test/fixtures/namespace/output-k8s.yaml index 5d262bfc..fcb0e232 100644 --- a/script/test/fixtures/namespace/output-k8s.yaml +++ b/script/test/fixtures/namespace/output-k8s.yaml @@ -14,8 +14,7 @@ spec: targetPort: 80 selector: io.kompose.service: web -status: - loadBalancer: {} + --- apiVersion: v1 @@ -25,7 +24,7 @@ metadata: name: web namespace: web spec: {} -status: {} + --- apiVersion: apps/v1 @@ -58,5 +57,5 @@ spec: protocol: TCP resources: {} restartPolicy: Always -status: {} + diff --git a/script/test/fixtures/namespace/output-os.yaml b/script/test/fixtures/namespace/output-os.yaml index 65c15073..513e4f93 100644 --- a/script/test/fixtures/namespace/output-os.yaml +++ b/script/test/fixtures/namespace/output-os.yaml @@ -14,8 +14,7 @@ spec: targetPort: 80 selector: io.kompose.service: web -status: - loadBalancer: {} + --- apiVersion: v1 @@ -25,7 +24,7 @@ metadata: name: web namespace: web spec: {} -status: {} + --- apiVersion: apps.openshift.io/v1 @@ -69,13 +68,7 @@ spec: kind: ImageStreamTag name: web:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -99,6 +92,5 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + diff --git a/script/test/fixtures/network-policies/output-k8s.yaml b/script/test/fixtures/network-policies/output-k8s.yaml index 8dbca2cc..80e96dbd 100644 --- a/script/test/fixtures/network-policies/output-k8s.yaml +++ b/script/test/fixtures/network-policies/output-k8s.yaml @@ -13,8 +13,7 @@ spec: targetPort: 80 selector: io.kompose.service: nginx -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -46,7 +45,7 @@ spec: protocol: TCP resources: {} restartPolicy: Always -status: {} + --- apiVersion: networking.k8s.io/v1 diff --git a/script/test/fixtures/read-only/output-k8s.yaml b/script/test/fixtures/read-only/output-k8s.yaml index d18582fd..70eb47d3 100644 --- a/script/test/fixtures/read-only/output-k8s.yaml +++ b/script/test/fixtures/read-only/output-k8s.yaml @@ -13,8 +13,7 @@ spec: targetPort: 80 selector: io.kompose.service: test -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -48,5 +47,5 @@ spec: securityContext: readOnlyRootFilesystem: true restartPolicy: Always -status: {} + diff --git a/script/test/fixtures/read-only/output-os.yaml b/script/test/fixtures/read-only/output-os.yaml index 40cc310e..a33269cc 100644 --- a/script/test/fixtures/read-only/output-os.yaml +++ b/script/test/fixtures/read-only/output-os.yaml @@ -13,8 +13,7 @@ spec: targetPort: 80 selector: io.kompose.service: test -status: - loadBalancer: {} + --- apiVersion: apps.openshift.io/v1 @@ -59,13 +58,7 @@ spec: 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 @@ -88,6 +81,5 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + diff --git a/script/test/fixtures/service-group/output-k8s.yaml b/script/test/fixtures/service-group/output-k8s.yaml index 57929661..4d3a583d 100644 --- a/script/test/fixtures/service-group/output-k8s.yaml +++ b/script/test/fixtures/service-group/output-k8s.yaml @@ -13,8 +13,7 @@ spec: targetPort: 8000 selector: io.kompose.service: librenms-dispatcher -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -65,7 +64,7 @@ spec: - name: librenms-dispatcher-claim0 persistentVolumeClaim: claimName: librenms-dispatcher-claim0 -status: {} + --- apiVersion: v1 @@ -81,5 +80,5 @@ spec: resources: requests: storage: 100Mi -status: {} + diff --git a/script/test/fixtures/single-file-output/output-k8s.yaml b/script/test/fixtures/single-file-output/output-k8s.yaml index 39835492..f3828633 100644 --- a/script/test/fixtures/single-file-output/output-k8s.yaml +++ b/script/test/fixtures/single-file-output/output-k8s.yaml @@ -16,8 +16,7 @@ spec: targetPort: 80 selector: io.kompose.service: front-end -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -58,7 +57,7 @@ spec: protocol: TCP resources: {} restartPolicy: Always -status: {} + --- apiVersion: networking.k8s.io/v1 @@ -84,6 +83,5 @@ spec: number: 80 path: / pathType: Prefix -status: - loadBalancer: {} + diff --git a/script/test/fixtures/statefulset/output-k8s.yaml b/script/test/fixtures/statefulset/output-k8s.yaml index 7172545e..a352dd74 100644 --- a/script/test/fixtures/statefulset/output-k8s.yaml +++ b/script/test/fixtures/statefulset/output-k8s.yaml @@ -15,8 +15,7 @@ spec: selector: io.kompose.service: db type: ClusterIP -status: - loadBalancer: {} + --- apiVersion: v1 @@ -35,8 +34,7 @@ spec: selector: io.kompose.service: wordpress type: ClusterIP -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -93,10 +91,6 @@ spec: resources: requests: storage: 100Mi - status: {} -status: - availableReplicas: 0 - replicas: 0 --- apiVersion: apps/v1 @@ -153,8 +147,4 @@ spec: resources: requests: storage: 100Mi - status: {} -status: - availableReplicas: 0 - replicas: 0 diff --git a/script/test/fixtures/statefulset/output-os.yaml b/script/test/fixtures/statefulset/output-os.yaml index b3664bd2..8e84d895 100644 --- a/script/test/fixtures/statefulset/output-os.yaml +++ b/script/test/fixtures/statefulset/output-os.yaml @@ -13,8 +13,7 @@ spec: targetPort: 3306 selector: io.kompose.service: db -status: - loadBalancer: {} + --- apiVersion: v1 @@ -31,8 +30,7 @@ spec: targetPort: 80 selector: io.kompose.service: wordpress -status: - loadBalancer: {} + --- apiVersion: apps/v1 @@ -89,10 +87,6 @@ spec: resources: requests: storage: 100Mi - status: {} -status: - availableReplicas: 0 - replicas: 0 --- apiVersion: apps.openshift.io/v1 @@ -148,13 +142,7 @@ spec: kind: ImageStreamTag name: db:5.7 type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -177,8 +165,7 @@ spec: name: "5.7" referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: apps/v1 @@ -235,10 +222,6 @@ spec: resources: requests: storage: 100Mi - status: {} -status: - availableReplicas: 0 - replicas: 0 --- apiVersion: apps.openshift.io/v1 @@ -294,13 +277,7 @@ spec: kind: ImageStreamTag name: wordpress:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -323,6 +300,5 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + diff --git a/script/test/fixtures/v2/output-k8s.yaml b/script/test/fixtures/v2/output-k8s.yaml index 714375d2..7bd47937 100644 --- a/script/test/fixtures/v2/output-k8s.yaml +++ b/script/test/fixtures/v2/output-k8s.yaml @@ -86,8 +86,6 @@ spec: targetPort: 5010 selector: io.kompose.service: foo -status: - loadBalancer: {} --- apiVersion: v1 @@ -107,8 +105,6 @@ spec: selector: io.kompose.service: redis type: LoadBalancer -status: - loadBalancer: {} --- apiVersion: v1 @@ -129,8 +125,6 @@ spec: selector: io.kompose.service: redis type: LoadBalancer -status: - loadBalancer: {} --- apiVersion: v1 @@ -232,7 +226,6 @@ spec: securityContext: supplementalGroups: - 1234 -status: {} --- apiVersion: apps/v1 @@ -272,5 +265,4 @@ spec: limits: memory: "10485760e3" restartPolicy: Always -status: {} diff --git a/script/test/fixtures/v2/output-os.yaml b/script/test/fixtures/v2/output-os.yaml index f9282d27..1fc52557 100644 --- a/script/test/fixtures/v2/output-os.yaml +++ b/script/test/fixtures/v2/output-os.yaml @@ -86,8 +86,7 @@ spec: targetPort: 5010 selector: io.kompose.service: foo -status: - loadBalancer: {} + --- apiVersion: v1 @@ -107,8 +106,7 @@ spec: selector: io.kompose.service: redis type: LoadBalancer -status: - loadBalancer: {} + --- apiVersion: v1 @@ -129,8 +127,7 @@ spec: selector: io.kompose.service: redis type: LoadBalancer -status: - loadBalancer: {} + --- apiVersion: v1 @@ -232,7 +229,7 @@ spec: securityContext: supplementalGroups: - 1234 -status: {} + --- apiVersion: apps.openshift.io/v1 @@ -281,13 +278,7 @@ spec: kind: ImageStreamTag name: redis:3.0 type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -310,6 +301,5 @@ spec: name: "3.0" referencePolicy: type: "" -status: - dockerImageRepository: "" + diff --git a/script/test/fixtures/v3.0/output-k8s.yaml b/script/test/fixtures/v3.0/output-k8s.yaml index ae6ee902..4dce1f1a 100644 --- a/script/test/fixtures/v3.0/output-k8s.yaml +++ b/script/test/fixtures/v3.0/output-k8s.yaml @@ -16,8 +16,6 @@ spec: targetPort: 0 selector: io.kompose.service: redis -status: - loadBalancer: {} --- apiVersion: apps/v1 @@ -51,7 +49,6 @@ spec: name: foo resources: {} restartPolicy: Always -status: {} --- apiVersion: apps/v1 @@ -90,5 +87,4 @@ spec: name: redis resources: {} restartPolicy: Always -status: {} diff --git a/script/test/fixtures/v3.0/output-os.yaml b/script/test/fixtures/v3.0/output-os.yaml index 26117700..9fc4e07a 100644 --- a/script/test/fixtures/v3.0/output-os.yaml +++ b/script/test/fixtures/v3.0/output-os.yaml @@ -16,8 +16,7 @@ spec: targetPort: 0 selector: io.kompose.service: redis -status: - loadBalancer: {} + --- apiVersion: apps.openshift.io/v1 @@ -62,13 +61,7 @@ spec: kind: ImageStreamTag name: foo:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -91,8 +84,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: apps.openshift.io/v1 @@ -140,13 +132,7 @@ spec: kind: ImageStreamTag name: redis:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -169,6 +155,5 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + diff --git a/script/test/fixtures/vols-subpath/output-k8s.yaml b/script/test/fixtures/vols-subpath/output-k8s.yaml index de17dc83..d090bd80 100644 --- a/script/test/fixtures/vols-subpath/output-k8s.yaml +++ b/script/test/fixtures/vols-subpath/output-k8s.yaml @@ -44,7 +44,7 @@ spec: - name: postgres-data persistentVolumeClaim: claimName: postgres-data -status: {} + --- apiVersion: v1 @@ -60,4 +60,4 @@ spec: resources: requests: storage: 100Mi -status: {} + diff --git a/script/test/fixtures/vols-subpath/output-os.yaml b/script/test/fixtures/vols-subpath/output-os.yaml index bd2295e3..e4943213 100644 --- a/script/test/fixtures/vols-subpath/output-os.yaml +++ b/script/test/fixtures/vols-subpath/output-os.yaml @@ -53,13 +53,7 @@ spec: kind: ImageStreamTag name: postgres:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -82,8 +76,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: v1 @@ -99,5 +92,5 @@ spec: resources: requests: storage: 100Mi -status: {} + diff --git a/script/test/fixtures/volume-mounts/windows/output-k8s.yaml b/script/test/fixtures/volume-mounts/windows/output-k8s.yaml index 29a2eb65..d5128c62 100644 --- a/script/test/fixtures/volume-mounts/windows/output-k8s.yaml +++ b/script/test/fixtures/volume-mounts/windows/output-k8s.yaml @@ -13,8 +13,6 @@ spec: targetPort: 80 selector: io.kompose.service: db -status: - loadBalancer: {} --- apiVersion: apps/v1 @@ -53,7 +51,6 @@ spec: - name: db-claim0 persistentVolumeClaim: claimName: db-claim0 -status: {} --- apiVersion: v1 @@ -69,5 +66,4 @@ spec: resources: requests: storage: 100Mi -status: {} diff --git a/script/test/fixtures/volume-mounts/windows/output-os.yaml b/script/test/fixtures/volume-mounts/windows/output-os.yaml index ac6b530e..b98e3a27 100644 --- a/script/test/fixtures/volume-mounts/windows/output-os.yaml +++ b/script/test/fixtures/volume-mounts/windows/output-os.yaml @@ -13,8 +13,7 @@ spec: targetPort: 80 selector: io.kompose.service: db -status: - loadBalancer: {} + --- apiVersion: apps.openshift.io/v1 @@ -64,13 +63,7 @@ spec: kind: ImageStreamTag name: db:latest type: ImageChange -status: - availableReplicas: 0 - latestVersion: 0 - observedGeneration: 0 - replicas: 0 - unavailableReplicas: 0 - updatedReplicas: 0 + --- apiVersion: image.openshift.io/v1 @@ -93,8 +86,7 @@ spec: name: latest referencePolicy: type: "" -status: - dockerImageRepository: "" + --- apiVersion: v1 @@ -110,5 +102,5 @@ spec: resources: requests: storage: 100Mi -status: {} +