Home > Article > Technology peripherals > where are copilot images stored
This guide covers how to locate, store, and access Copilot images. Copilot images are stored in a Google Cloud Storage bucket, accessible with gs:// commands or the --image flag in gcloud. Bucket locations can be retrieved with gcloud container get-c
Where are copilot images stored
Copilot images are stored in a Google Cloud Storage bucket.
Where can I retrieve the location of the copilot images
You can retrieve the Cloud Storage bucket location of the copilot images by using the following command:
<code> gcloud container get-cluster CLUSTER_NAME \ --project=PROJECT_ID \ --region=CLUSTER_REGION \ --format='value(currentNodeVersion)'</code>
Can you direct me to the storage location of copilot images
The format of the Cloud Storage bucket name is:
gcr.io/PROJECT_ID/copilot/copilot_images
What is the pathway to access the stored copilot images
To access the stored copilot images, you can use the following command:
<code>gs://gcr.io/PROJECT_ID/copilot/copilot_images/IMAGE_NAME</code>
The above is the detailed content of where are copilot images stored. For more information, please follow other related articles on the PHP Chinese website!