0

I am trying to create a new VM by clicking the link on this page. Whenever I click through, I get the error "You do not have sufficient permissions to view this page"

I have tried the suggestions here, here, and here, and so far none have resolved my issue.

wil3
  • 2,877
  • 2
  • 18
  • 22
  • 1
    Can you add the URL on which you are facing this issue? Also what is your role in IAM? – Mahesh Khond Nov 14 '19 at 06:59
  • I can't see a button such as "create new VM" in the [linked web](https://cloud.google.com/deep-learning-vm/). Can you please describe more precisely which button are you pressing? If you want to create a Compute Engine VM Instance you can just go to your [console](https://console.cloud.google.com)> Compute Engine > Create Instance – Chris32 Nov 14 '19 at 08:37

1 Answers1

2

I don't think the issue is with your settings. This should be fixed soon.

Meanwhile you can use the gcloud command to create deep learning VMs:

export IMAGE_FAMILY="tf-latest-cu92"
export ZONE="us-west1-b"
export INSTANCE_NAME="my-new-instance"
export INSTANCE_TYPE="n1-standard-8"
gcloud compute instances create $INSTANCE_NAME \
        --zone=$ZONE \
        --image-family=$IMAGE_FAMILY \
        --image-project=deeplearning-platform-release \
        --maintenance-policy=TERMINATE \
        --accelerator="type=nvidia-tesla-v100,count=1" \
        --machine-type=$INSTANCE_TYPE \
        --boot-disk-size=120GB \
        --metadata="install-nvidia-driver=True"

See details here.

Kunal Deo
  • 2,248
  • 2
  • 18
  • 27