Skip to content
This repository was archived by the owner on Dec 12, 2025. It is now read-only.

Commit

Permalink
GCP: Storage updates for UI changes and fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiddelkoop committed Oct 18, 2022
1 parent a809d1d commit ca1ef56
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions content/GCP/03_intro_to_cloud_storage.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"Buckets are where objects are stored and have a globally unique name.\n",
"\n",
"To create a bucket we do the following:\n",
" * Click **Navigation Menu** -> **Cloud Storage** (under Storage) -> **Browser** -> **+Create Bucket** (just under the blue bar) to open the *Create a bucket* page.\n",
" * Click **Navigation Menu** -> **Cloud Storage** (under Storage) -> **Buckets** -> **+Create Bucket** (just under the blue bar) to open the *Create a bucket* page.\n",
" * In *Name your bucket*:\n",
" * For **Name**, enter a globally unique name for the bucket (example \"**essentials-test-myname-2022-01-01**\")\n",
" * Click **Continue**\n",
Expand All @@ -84,10 +84,10 @@
" * Select **Standard** (default). The other options are for long-term storage.\n",
" * Click **Continue**\n",
" * In *Choose how to control access to objects*:\n",
" * Under *Prevent Public Access* check \"**Enforce public access prevention on this bucket**\". This will try to prevent others from accessing your data. \n",
" * Under *Prevent Public Access* leave \"**Enforce public access prevention on this bucket**\" checked (default). This will try to prevent others from accessing your data. \n",
" * Under *Access Control* Select **Uniform** (default). *Uniform* permissions are on the entire Bucket. *Fine-grained* permissions are on the objects.\n",
" * Select **Continue**\n",
" * Note the **monthly cost estimate** in the right side panel. This is only for reading, writing, and storing data and does not include networking, compute, and other charges that may occur by using the data.\n",
" * Note the **monthly cost estimate** in the right side panel (you may need to open it by clicking the expand button (**<|**) in the upper right just below the blue bar). This is only for reading, writing, and storing data and does not include networking, compute, and other charges that may occur by using the data.\n",
" * *Storage size* is the total amount of data stored. **Exercise:** Enter 1000 in the storage size box to see how much a TB costs per month.\n",
" * *Data Retrieval* is only used for for long-term, non *standard*, storage.\n",
" * *Operations* is the number of \"operations\" performed on an object, for example reading and writing an object. Storing and accessing many objects require many operations.\n",
Expand All @@ -110,7 +110,7 @@
"\n",
"To view the project activity we do the following:\n",
"\n",
" * Navigate to the project **Dashboard** by clicking on \"Google Cloud Platform\" on the left side of the top blue bar and clicking on the \"*Dashboard*\" link.\n",
" * Navigate to the project **Dashboard** by clicking on \"Google Cloud\" on the left side of the top blue bar and clicking on the \"*Dashboard*\" link.\n",
" * Select **Activity** tab just below the top blue bar.\n",
" * Look for the row with **Create Bucket** on the top of the table. This shows that the bucket was created.\n",
" * Expand the detail by clicking the **down arrow** on the right side of the row. You can see what identity created the bucket and the name. The rest of the information details the initial settings that you configured when creating the bucket. The details are not really important at this time, just know they exist.\n",
Expand All @@ -129,7 +129,7 @@
"\n",
"Now lets find and examine the bucket. To view a bucket we do the following:\n",
"\n",
" * Navigate to the Google Storage page by clicking **Navigation Menu** -> **Cloud Storage** (under Storage) -> **Browser**. \n",
" * Navigate to the Google Storage page by clicking **Navigation Menu** -> **Cloud Storage** (under Storage) -> **Buckets**. \n",
" * **Find** the bucket you just created. You can use the filter to find a bucket if there are a lot of them.\n",
" * Click on the bucket name to open the **bucket details** (it will display as a hyperlink when you hover over the bucket name).\n"
]
Expand All @@ -143,13 +143,13 @@
"source": [
"## Review what is Important\n",
"\n",
"It is always important to review what is important to you. It may be cost, or keeping the data secure. Later on we will show how to monitor overall costs. We will also learn how to use the \"info panel\" to show more information about a bucket.\n",
"It is always important to review what is important to you. It may be cost, or keeping the data secure. Later on we will show how to monitor overall costs.\n",
"\n",
"For Drew, we will review that the bucket **public access** is *not public* by doing the following:\n",
" * Go to **Navigation Menu -> Cloud Storage -> Browser**\n",
" * Go to **Navigation Menu -> Cloud Storage -> Buckets**\n",
" * Select the bucket of interest by **checking the box** next to the Bucket name.\n",
" * In the **Info Panel** (click show \"Info Panel\" if necessary) in the **Permissions** tab in the **Public Access** card you should see **Not Public**. This means that public access prevention is turned on.\n",
" * You can also see the **permissions** for the bucket in the bottom of the bar."
" * Click the **Permissions** button just under the blue bar and you should see **Not Public** in the \"Public Access\" box that appears. This means that public access prevention is turned on.\n",
" * You can also see the **permissions** for the bucket in the bottom of the side bar."
]
},
{
Expand Down Expand Up @@ -203,9 +203,9 @@
},
"source": [
"To delete a *Bucket*:\n",
" * Go to **Navigation Menu** -> **Cloud Storage** (under Storage) -> **Browser**.\n",
" * On the row of the virtual machines click the three vertical dots (**kabob**) menu and select **Delete**\n",
" * Click 'Delete' to confirm deleting the instance. \n",
" * Go to **Navigation Menu** -> **Cloud Storage** (under Storage) -> **Buckets**.\n",
" * On the row of the bucket click the three vertical dots (**kabob**) menu and select **Delete**\n",
" * Type the word **\"Delete\"** in the text box and click 'Delete' to confirm deleting the storage bucket. \n",
"\n",
"![storage-delete-bucket](img/storage-delete-bucket.png)\n",
"\n",
Expand Down

0 comments on commit ca1ef56

Please sign in to comment.