Uploaded image for project: 'OpenShift Virtualization'
  1. OpenShift Virtualization
  2. CNV-40606

[4.17] VMExport download VM manifest - has both "source" and "sourceRef" - results in cloning a DataSource instead of exporting a source PVC

    • 5
    • False
    • Hide

      None

      Show
      None
    • False
    • CNV v4.17.0.rhel9-60
    • ---
    • ---
    • Storage Core Sprint 253, Storage Core Sprint 254, Storage Core Sprint 255, Storage Core Sprint 256, Storage Core Sprint 257
    • Important
    • No

      Description of problem:

      virtctl vmexport download vm1-export --vm=rhel9-scarlet-cricket-55 --manifest --include-secret --output=manifest.yaml
      
      VM manifest dataVolumeTemplates - has both "source" and "sourceRef", which results in a cloning from a DataSource 
      VM manifest dataVolumeTemplates - should only have a "source"

      Version-Release number of selected component (if applicable):

      4.16, 4.15, probably in earlier versions as well

      How reproducible:

      Always

      Steps to Reproduce:

      1. Create a VM from a DataSource (in UI, for example)
      2. Run 
      virtctl vmexport download vm1-export --vm=rhel9-scarlet-cricket-55 --manifest --include-secret --output=manifest.yaml
      3. See the VM manifest:
      
      apiVersion: kubevirt.io/v1
      kind: VirtualMachine
      metadata:
        annotations:
          kubemacpool.io/transaction-timestamp: "2024-04-10T11:48:03.276130493Z"
          kubevirt.io/latest-observed-api-version: v1
          kubevirt.io/storage-observed-api-version: v1
          vm.kubevirt.io/validations: |
            [
              {
                "name": "minimal-required-memory",
                "path": "jsonpath::.spec.domain.memory.guest",
                "rule": "integer",
                "message": "This VM requires more memory.",
                "min": 1610612736
              }
            ]
        creationTimestamp: null
        labels:
          app: rhel9-scarlet-cricket-55
          kubevirt.io/dynamic-credentials-support: "true"
          vm.kubevirt.io/template: rhel9-server-small
          vm.kubevirt.io/template.namespace: openshift
          vm.kubevirt.io/template.revision: "1"
          vm.kubevirt.io/template.version: v0.27.0
        name: rhel9-scarlet-cricket-55
        namespace: default
      spec:
        dataVolumeTemplates:
        - apiVersion: cdi.kubevirt.io/v1beta1
          kind: DataVolume
          metadata:
            creationTimestamp: null
            name: rhel9-scarlet-cricket-55
          spec:
            source:
              http:
                certConfigMap: export-ca-cm-vm1-export
                secretExtraHeaders:
                - header-secret-vm1-export
                url: https://virt-exportproxy-openshift-cnv.apps.<SERVER>/api/export.kubevirt.io/v1alpha1/namespaces/default/virtualmachineexports/vm1-export/volumes/rhel9-scarlet-cricket-55/disk.img.gz
            sourceRef:
              kind: DataSource
              name: rhel9
              namespace: openshift-virtualization-os-images
            storage:
              resources:
                requests:
                  storage: 30Gi
        running: false
        template:
          metadata:
            annotations:
              vm.kubevirt.io/flavor: small
              vm.kubevirt.io/os: rhel9
              vm.kubevirt.io/workload: server
            creationTimestamp: null
            labels:
              app.kubernetes.io/name: headless
              kubevirt.io/domain: rhel9-scarlet-cricket-55
              kubevirt.io/size: small
          spec:
            architecture: amd64
            domain:
              cpu:
                cores: 1
                sockets: 1
                threads: 1
              devices:
                disks:
                - disk:
                    bus: virtio
                  name: rootdisk
                - disk:
                    bus: virtio
                  name: cloudinitdisk
                interfaces:
                - macAddress: "02:04:17:00:00:09"
                  masquerade: {}
                  model: virtio
                  name: default
                networkInterfaceMultiqueue: true
                rng: {}
              features:
                acpi: {}
                smm:
                  enabled: true
              firmware:
                bootloader:
                  efi: {}
              machine:
                type: pc-q35-rhel9.4.0
              memory:
                guest: 2Gi
              resources: {}
            networks:
            - name: default
              pod: {}
            terminationGracePeriodSeconds: 180
            volumes:
            - dataVolume:
                name: rhel9-scarlet-cricket-55
              name: rootdisk
            - cloudInitNoCloud:
                userData: |-
                  #cloud-config
                  user: cloud-user
                  password: egau-yftp-m1y2
                  chpasswd: { expire: False }
              name: cloudinitdisk
      status: {}

      Actual results:

      Both "source" and "sourceRef" are in the dataVolumeTemplates, which results in cloning from a DataSource, but not exporting the source PVC

      Expected results:

      Only "source" in the dataVolumeTemplates

      Additional info:

       

            [CNV-40606] [4.17] VMExport download VM manifest - has both "source" and "sourceRef" - results in cloning a DataSource instead of exporting a source PVC

            Errata Tool added a comment -

            Since the problem described in this issue should be resolved in a recent advisory, it has been closed.

            For information on the advisory (OpenShift Virtualization 4.17.0 Images), and where to find the updated files, follow the link below.

            If the solution does not work for you, open a new bug report.
            https://access.redhat.com/errata/RHEA-2024:8140

            Errata Tool added a comment - Since the problem described in this issue should be resolved in a recent advisory, it has been closed. For information on the advisory (OpenShift Virtualization 4.17.0 Images), and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHEA-2024:8140

            Verified on CNV-v4.17.0.rhel9-189

            $ cat manifest.yaml
            ...
            apiVersion: kubevirt.io/v1
            kind: VirtualMachine
            ...
            spec:
              dataVolumeTemplates:
              - apiVersion: cdi.kubevirt.io/v1beta1
                kind: DataVolume
                metadata:
                  creationTimestamp: null
                  name: rhel9-brown-worm-49
                spec:
                  source:
                    http:
                      certConfigMap: export-ca-cm-vm1-export
                      secretExtraHeaders:
                      - header-secret-vm1-export
                      url: https://virt-exportproxy-openshift-cnv.apps.<SERVER>/api/export.kubevirt.io/v1beta1/namespaces/default/virtualmachineexports/vm1-export/volumes/rhel9-brown-worm-49/disk.img.gz
                  storage:
                    resources:
                      requests:
                        storage: 30Gi
            

            Jenia Peimer added a comment - Verified on CNV-v4.17.0.rhel9-189 $ cat manifest.yaml ... apiVersion: kubevirt.io/v1 kind: VirtualMachine ... spec: dataVolumeTemplates: - apiVersion: cdi.kubevirt.io/v1beta1 kind: DataVolume metadata: creationTimestamp: null name: rhel9-brown-worm-49 spec: source: http: certConfigMap: export-ca-cm-vm1-export secretExtraHeaders: - header-secret-vm1-export url: https: //virt-exportproxy-openshift-cnv.apps.<SERVER>/api/export.kubevirt.io/v1beta1/namespaces/ default /virtualmachineexports/vm1-export/volumes/rhel9-brown-worm-49/disk.img.gz storage: resources: requests: storage: 30Gi

            cnv-qe jira added a comment -

            cnv-qe jira added a comment - The first build that contains https://github.com/kubevirt/kubevirt/pull/11922 is CNV v4.17.0.rhel9-60 .

            A build that contains the fix PR(s) for this bug is available, moving status from MODIFIED to ON_QA.
            The first build that contains https://github.com/kubevirt/kubevirt/pull/11922 is CNV v4.99.0.rhel9-533.

            cnv-qe jira added a comment - A build that contains the fix PR(s) for this bug is available, moving status from MODIFIED to ON_QA. The first build that contains https://github.com/kubevirt/kubevirt/pull/11922 is CNV v4.99.0.rhel9-533 .

            CPaaS Service Account mentioned this issue in a merge request of cpaas-midstream / openshift-virtualization / kubevirt on branch cnv-4.99-rhel-9_upstream_a8385fd8b807363b9db025b5d9ab7f67:

            Updated US source to: ec3dd0f Merge pull request #11652 from akrejcir/ssh-guest-agent-fix

            GitLab CEE Bot added a comment - CPaaS Service Account mentioned this issue in a merge request of cpaas-midstream / openshift-virtualization / kubevirt on branch cnv-4.99-rhel-9_ upstream _a8385fd8b807363b9db025b5d9ab7f67 : Updated US source to: ec3dd0f Merge pull request #11652 from akrejcir/ssh-guest-agent-fix

            CPaaS Service Account mentioned this issue in a merge request of cpaas-midstream / openshift-virtualization / kubevirt on branch cnv-4.99-rhel-9_upstream_66bd63b9f9a36e67bf0f485d6cb3a120:

            Updated US source to: 976ea3a Merge pull request #12081 from orelmisan/rm-getmetadata

            GitLab CEE Bot added a comment - CPaaS Service Account mentioned this issue in a merge request of cpaas-midstream / openshift-virtualization / kubevirt on branch cnv-4.99-rhel-9_ upstream _66bd63b9f9a36e67bf0f485d6cb3a120 : Updated US source to: 976ea3a Merge pull request #12081 from orelmisan/rm-getmetadata

            CPaaS Service Account mentioned this issue in a merge request of cpaas-midstream / openshift-virtualization / kubevirt on branch cnv-4.99-rhel-9_upstream_ad69b8b02bd3bc56af4ae10ed614bb65:

            Updated US source to: 3cfb327 Merge pull request #12075 from awels/skip_tests_if_no_storage_guestfs

            GitLab CEE Bot added a comment - CPaaS Service Account mentioned this issue in a merge request of cpaas-midstream / openshift-virtualization / kubevirt on branch cnv-4.99-rhel-9_ upstream _ad69b8b02bd3bc56af4ae10ed614bb65 : Updated US source to: 3cfb327 Merge pull request #12075 from awels/skip_tests_if_no_storage_guestfs

            CPaaS Service Account mentioned this issue in a merge request of cpaas-midstream / openshift-virtualization / kubevirt on branch cnv-4.99-rhel-9_upstream_8ae89231b7768c4770a9717177e4c985:

            Updated US source to: 49a58db Merge pull request #11824 from Barakmor1/ct

            GitLab CEE Bot added a comment - CPaaS Service Account mentioned this issue in a merge request of cpaas-midstream / openshift-virtualization / kubevirt on branch cnv-4.99-rhel-9_ upstream _8ae89231b7768c4770a9717177e4c985 : Updated US source to: 49a58db Merge pull request #11824 from Barakmor1/ct

            CPaaS Service Account mentioned this issue in a merge request of cpaas-midstream / openshift-virtualization / kubevirt on branch cnv-4.99-rhel-9_upstream_9c431b9b59d962381796e80da1a4c5e6:

            Updated US source to: f4220d2 Merge pull request #11820 from nunnatsa/operator-go-rm-lambdas

            GitLab CEE Bot added a comment - CPaaS Service Account mentioned this issue in a merge request of cpaas-midstream / openshift-virtualization / kubevirt on branch cnv-4.99-rhel-9_ upstream _9c431b9b59d962381796e80da1a4c5e6 : Updated US source to: f4220d2 Merge pull request #11820 from nunnatsa/operator-go-rm-lambdas

            CPaaS Service Account mentioned this issue in a merge request of cpaas-midstream / openshift-virtualization / kubevirt on branch cnv-4.99-rhel-9_upstream_4125d9f7648b426849afb1dc29fc7aa1:

            Updated US source to: 90f8de3 Merge pull request #12079 from EdDev/net-hotplug-beta

            GitLab CEE Bot added a comment - CPaaS Service Account mentioned this issue in a merge request of cpaas-midstream / openshift-virtualization / kubevirt on branch cnv-4.99-rhel-9_ upstream _4125d9f7648b426849afb1dc29fc7aa1 : Updated US source to: 90f8de3 Merge pull request #12079 from EdDev/net-hotplug-beta

              rh-ee-alromero Alvaro Romero
              jpeimer@redhat.com Jenia Peimer
              Jenia Peimer Jenia Peimer
              Votes:
              0 Vote for this issue
              Watchers:
              7 Start watching this issue

                Created:
                Updated:
                Resolved: