Bug 2137123
Summary: | VMExport: export pod is not PSA complaint | ||
---|---|---|---|
Product: | Container Native Virtualization (CNV) | Reporter: | Jenia Peimer <jpeimer> |
Component: | Storage | Assignee: | Alex Kalenyuk <akalenyu> |
Status: | CLOSED ERRATA | QA Contact: | Jenia Peimer <jpeimer> |
Severity: | unspecified | Docs Contact: | |
Priority: | high | ||
Version: | 4.12.0 | CC: | alitke, mrashish, yadu |
Target Milestone: | --- | Keywords: | AutomationBlocker, TestBlocker |
Target Release: | 4.12.0 | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | CNV v4.12.0-664 | Doc Type: | If docs needed, set a value |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2023-01-24 13:41:30 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Jenia Peimer
2022-10-23 16:20:29 UTC
@akalenyu opened a PR to fix this: https://github.com/kubevirt/kubevirt/pull/8652 Verified on CNV-v4.12.0-665 Create a VM and stop it: $ oc create -f vm-ocs.yaml virtualmachine.kubevirt.io/vm-cirros-source-ocs created $ oc get vm -A NAMESPACE NAME AGE STATUS READY default vm-cirros-source-ocs 28s Running True $ virtctl stop vm-cirros-source-ocs VM vm-cirros-source-ocs was scheduled to stop Create a token: $ cat token.yaml apiVersion: v1 kind: Secret metadata: name: virt-export-token data: token: bXl0b2tlbg== $ oc create -f token.yaml secret/virt-export-token created Create VMExport: $ cat vmexport-vm.yaml apiVersion: export.kubevirt.io/v1alpha1 kind: VirtualMachineExport metadata: name: export-vm-object spec: source: apiGroup: "kubevirt.io" kind: VirtualMachine name: vm-cirros-source-ocs tokenSecretRef: virt-export-token $ oc create -f vmexport-vm.yaml virtualmachineexport.export.kubevirt.io/export-vm-object created $ oc get vmexport NAME SOURCEKIND SOURCENAME PHASE export-vm-object VirtualMachine vm-cirros-source-ocs Ready $ oc get pods NAME READY STATUS RESTARTS AGE virt-export-export-vm-object 1/1 Running 0 14s Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory (Important: OpenShift Virtualization 4.12.0 Images security update), 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/RHSA-2023:0408 |