FileStore

參考資料:介紹(https://blog.gcp.expert/cloud-filestore-release/#more-3061)

參考資料:官網(https://cloud.google.com/filestore/?_ga=2.19340728.-1036212298.1542705279)

gcloud 的 輸入參考指令 location 我當初 Google Cloud Storage 設定的location 是 asia-southeast1 但是FileStore 設定的只能照著參考上面的 us-central1-c。

gcloud beta filestore instances create nfs-server \
    --project=[PROJECT_ID] \
    --location=us-central1-c \
    --tier=STANDARD \
    --file-share=name="vol1",capacity=1TB \
    --network=name="default"

Last updated