58630/how-do-i-import-a-ova-file-in-gcp
Add the virtual appliance to Cloud Storage.
To import an OVA file from Cloud Storage to Compute Engine, use the gcloud compute instances import command.
gcloud compute instances import [INSTANCE_NAME] \ --source-uri=gs:[PATH_TO_OVA_FILE]
where:
[INSTANCE_NAME] is the name of the instance you want to create.
[PATH_TO_OVA_FILE] is the path to the OVA file on Cloud Storage.
For example, to import an OVA file Ubuntu.ova and create an instance named my-instance, run the following command:
gcloud compute instances import my-instance \ --source-uri=gs://my-bucket/Ubuntu.ova
In some cases, you might be prompted to provide a value for the OS. To specify the operating system, you need to add the --os flag. For example, to import an OVA file Ubuntu.ova and create an instance named my-instance that runs Ubuntu 16.04, run the following command:
gcloud compute instances import my-instance \ --os=ubuntu-1604 --source-uri=gs://my-bucket/Ubuntu.ova
You could probably use Stackdriver Cloud Audit ...READ MORE
You could probably follow these steps to create ...READ MORE
Shutting down a project within the console releases all ...READ MORE
You can enact an image access policy ...READ MORE
Continuously make a point to shut down any ...READ MORE
Google Compute Engine provides public images preconfigured with ...READ MORE
If you SSH into the instance you ...READ MORE
The gcloud compute command-line tool enables you to easily ...READ MORE
To create a VM instance: It is important you ...READ MORE
In order to access the services provided ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.