Importing a raw/ova as an image get stucked "updating"

0

I wanted to create an AMI image using ubuntu22.04 raw and ova images. I uploaded the images into s3 bucket and ran the following command to import ami image. aws ec2 import-image --description "Raw Image" --disk-containers file:///home/lnx/tmp/manifest.json --role-name vmimport

Then I tried to check the status using "aws ec2 describe-import-image-tasks --import-task-ids <ImportTaskId>". Till now everything went smooth. But the status message of the import task is displaying "Updating" since 4 days. How can I debug the issue?

{
    "ImportImageTasks": [
        {
            "Description": "Raw Image",
            "ImportTaskId": "import-ami-<ami task id>",
            "Progress": "27",
            "SnapshotDetails": [
                {
                    "Description": "Raw Image",
                    "DeviceName": "/dev/sde",
                    "DiskImageSize": 10737418240.0,
                    "Format": "RAW",
                    "Status": "completed",
                    "UserBucket": {
                        "S3Bucket": "mybucketname",
                        "S3Key": "ubuntu-ec2.x86_64-1.22.4.raw"
                    }
                }
            ],
            "Status": "active",
            "StatusMessage": "updating",
            "Tags": []
        }
    ]
}

Thanks in advance

gefragt vor einem Jahr92 Aufrufe
Keine Antworten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen