diff --git a/content/writeups/google-cloudskillsboost/GSP315/images/code_function.webp b/content/writeups/google-cloudskillsboost/GSP315/images/code_function.webp new file mode 100644 index 0000000..1d69a34 Binary files /dev/null and b/content/writeups/google-cloudskillsboost/GSP315/images/code_function.webp differ diff --git a/content/writeups/google-cloudskillsboost/GSP315/images/labs_variable.webp b/content/writeups/google-cloudskillsboost/GSP315/images/labs_variable.webp new file mode 100644 index 0000000..22e2455 Binary files /dev/null and b/content/writeups/google-cloudskillsboost/GSP315/images/labs_variable.webp differ diff --git a/content/writeups/google-cloudskillsboost/GSP315/images/map.webp b/content/writeups/google-cloudskillsboost/GSP315/images/map.webp new file mode 100644 index 0000000..8a1857f Binary files /dev/null and b/content/writeups/google-cloudskillsboost/GSP315/images/map.webp differ diff --git a/content/writeups/google-cloudskillsboost/GSP315/images/package-json.webp b/content/writeups/google-cloudskillsboost/GSP315/images/package-json.webp new file mode 100644 index 0000000..e1617ae Binary files /dev/null and b/content/writeups/google-cloudskillsboost/GSP315/images/package-json.webp differ diff --git a/content/writeups/google-cloudskillsboost/GSP315/images/trigger.webp b/content/writeups/google-cloudskillsboost/GSP315/images/trigger.webp new file mode 100644 index 0000000..ec6a7da Binary files /dev/null and b/content/writeups/google-cloudskillsboost/GSP315/images/trigger.webp differ diff --git a/content/writeups/google-cloudskillsboost/GSP315/index.md b/content/writeups/google-cloudskillsboost/GSP315/index.md new file mode 100644 index 0000000..0743da4 --- /dev/null +++ b/content/writeups/google-cloudskillsboost/GSP315/index.md @@ -0,0 +1,244 @@ +--- +title: "[GSP315] Perform Foundational Infrastructure Tasks in Google Cloud: Challenge Lab" +description: "" +summary: "Perform Foundational Infrastructure Tasks in Google Cloud" +date: 2023-05-21T08:21:03+07:00 +draft: false +author: "Hiiruki" # ["Me", "You"] # multiple authors +tags: ["writeups", "challenge", "google-cloudskillsboost", "gsp315", "google-cloud", "cloudskillsboost", "juaragcp", "google-cloud-platform", "gcp", "cloud-computing", "cloud-functions", "cloud-storage", "pubsub"] +canonicalURL: "" +showToc: true +TocOpen: false +TocSide: 'right' # or 'left' +weight: 8 +# aliases: ["/first"] +hidemeta: false +comments: false +disableHLJS: true # to disable highlightjs +disableShare: true +hideSummary: false +searchHidden: false +ShowReadingTime: true +ShowBreadCrumbs: true +ShowPostNavLinks: true +ShowWordCount: true +ShowRssButtonInSectionTermList: true +# UseHugoToc: true +cover: + image: "" # image path/url + alt: "" # alt text + caption: "" # display caption under cover + relative: false # when using page bundles set this to true + hidden: true # only hide on current single page +# editPost: +# URL: "https://github.com/hiiruki/hiiruki.dev/blob/main/content/writeups/google-cloudskillsboost/GSP315/index.md" +# Text: "Suggest Changes" # edit text +# appendFilePath: true # to append file path to Edit link +--- + +### GSP315 + +![Lab Banner](https://cdn.qwiklabs.com/GMOHykaqmlTHiqEeQXTySaMXYPHeIvaqa2qHEzw6Occ%3D#center) + +- Time: 1 hour
+- Difficulty: Introductory
+- Price: 1 Credit + +Lab: [GSP315](https://www.cloudskillsboost.google/focuses/10379?parent=catalog)
+Quest: [Perform Foundational Infrastructure Tasks in Google Cloud](https://www.cloudskillsboost.google/quests/118)
+ +## Challenge scenario + +You are just starting your junior cloud engineer role with Jooli inc. So far you have been helping teams create and manage Google Cloud resources. + +You are expected to have the skills and knowledge for these tasks so don’t expect step-by-step guides. + +## Your challenge + +You are now asked to help a newly formed development team with some of their initial work on a new project around storing and organizing photographs, called memories. You have been asked to assist the memories team with initial configuration for their application development environment; you receive the following request to complete the following tasks: + +- Create a bucket for storing the photographs. +- Create a Pub/Sub topic that will be used by a Cloud Function you create. +- Create a Cloud Function. +- Remove the previous cloud engineer’s access from the memories project. + +Some Jooli Inc. standards you should follow: + +- Create all resources in the **us-east1** region and **us-east1-b** zone, unless otherwise directed. +- Use the project VPCs. +- Naming is normally _team-resource_, e.g. an instance could be named **kraken-webserver1**. +- Allocate cost effective resource sizes. Projects are monitored and excessive resource use will result in the containing project's termination (and possibly yours), so beware. This is the guidance the monitoring team is willing to share; unless directed, use **f1-micro** for small Linux VMs and **n1-standard-1** for Windows or other applications such as Kubernetes nodes. + +Each task is described in detail below, good luck! + +### Task 1. Create a bucket + +- You need to create a bucket called `Bucket Name` for the storage of the photographs. + +Go to cloud shell and run the following command to create a bucket. + +Replace `[BUCKET_NAME]` with the name of the bucket in the lab instructions. + +![Labs Variable](./images/labs_variable.webp#center) + +```bash +gsutil mb gs://[BUCKET_NAME]/ +``` + +### Task 2. Create a Pub/Sub topic + +- Create a Pub/Sub topic called `Topic Name` for the Cloud Function to send messages. + +Go to cloud shell and run the following command to create a Pub/Sub topic. + +Replace `[TOPIC_NAME]` with the name of the bucket in the lab instructions. + +```bash +gcloud pubsub topics create [TOPIC_NAME] +``` + +### Task 3. Create the thumbnail Cloud Function + +1. In the **Cloud Console**, click the **Navigation menu** > **Cloud Functions**. +2. Click **Create function**. +3. In the **Create function** dialog, enter the following values: + + - Function Name: `CLOUD_FUNCTION_NAME`, change the name of the function in the lab instructions. + - Trigger: Cloud Storage + - Event Type: Finalizing/Creating + - Bucket: `BUCKET_NAME` + + ![trigger](./images/trigger.webp#center) + + - Click **_Save_**. + - Click **_Next_**. + - Runtime: Node.js 14 + - Entry Point (Function to execute): thumbnail + - Source Code: Inline editor + - Replace code for index.js and package.json + + In `line 15` of `index.js` replace the text **REPLACE_WITH_YOUR_TOPIC_NAME** with the `TOPIC_NAME` you created in task 2. + + `index.js`: + + ```JavaScript + /* globals exports, require */ + //jshint strict: false + //jshint esversion: 6 + "use strict"; + const crc32 = require("fast-crc32c"); + const { Storage } = require('@google-cloud/storage'); + const gcs = new Storage(); + const { PubSub } = require('@google-cloud/pubsub'); + const imagemagick = require("imagemagick-stream"); + exports.thumbnail = (event, context) => { + const fileName = event.name; + const bucketName = event.bucket; + const size = "64x64" + const bucket = gcs.bucket(bucketName); + const topicName = "REPLACE_WITH_YOUR_TOPIC_NAME"; + const pubsub = new PubSub(); + if ( fileName.search("64x64_thumbnail") == -1 ){ + // doesn't have a thumbnail, get the filename extension + var filename_split = fileName.split('.'); + var filename_ext = filename_split[filename_split.length - 1]; + var filename_without_ext = fileName.substring(0, fileName.length - filename_ext.length ); + if (filename_ext.toLowerCase() == 'png' || filename_ext.toLowerCase() == 'jpg'){ + // only support png and jpg at this point + console.log(`Processing Original: gs://${bucketName}/${fileName}`); + const gcsObject = bucket.file(fileName); + let newFilename = filename_without_ext + size + '_thumbnail.' + filename_ext; + let gcsNewObject = bucket.file(newFilename); + let srcStream = gcsObject.createReadStream(); + let dstStream = gcsNewObject.createWriteStream(); + let resize = imagemagick().resize(size).quality(90); + srcStream.pipe(resize).pipe(dstStream); + return new Promise((resolve, reject) => { + dstStream + .on("error", (err) => { + console.log(`Error: ${err}`); + reject(err); + }) + .on("finish", () => { + console.log(`Success: ${fileName} → ${newFilename}`); + // set the content-type + gcsNewObject.setMetadata( + { + contentType: 'image/'+ filename_ext.toLowerCase() + }, function(err, apiResponse) {}); + pubsub + .topic(topicName) + .publisher() + .publish(Buffer.from(newFilename)) + .then(messageId => { + console.log(`Message ${messageId} published.`); + }) + .catch(err => { + console.error('ERROR:', err); + }); + }); + }); + } + else { + console.log(`gs://${bucketName}/${fileName} is not an image I can handle`); + } + } + else { + console.log(`gs://${bucketName}/${fileName} already has a thumbnail`); + } + }; + ``` + + Look like this: + + ![code_function](./images/code_function.webp#center) + + `package.json`: + + ```json + { + "name": "thumbnails", + "version": "1.0.0", + "description": "Create Thumbnail of uploaded image", + "scripts": { + "start": "node index.js" + }, + "dependencies": { + "@google-cloud/pubsub": "^2.0.0", + "@google-cloud/storage": "^5.0.0", + "fast-crc32c": "1.0.4", + "imagemagick-stream": "4.1.1" + }, + "devDependencies": {}, + "engines": { + "node": ">=4.3.2" + } + } + ``` + + Like this: + + ![package-json](./images/package-json.webp#center) + + - Click **Deploy**. + +4. Download this [image](https://storage.googleapis.com/cloud-training/gsp315/map.jpg) to your local machine or download this map image below. + ![map image](./images/map.webp#center) +5. In the console, click the **Navigation menu** > **Cloud Storage** > **Buckets**. +6. Click the name of the bucket that you created. +7. In the **Objects** tab, click **Upload files**. +8. In the file dialog, go to the file that you downloaded and select it. +9. Click **Refresh Bucket**. +10. Verify that the thumbnail image was created. +11. If you getting error, you can upload the image again. + +### Task 4. Remove the previous cloud engineer + +1. In the console, click the **Navigation menu** > **IAM & Admin** > **IAM**. +2. Search for the previous cloud engineer (`Username 2` with the role of Viewer). +3. Click the **pencil icon** to edit, and then select the **trash icon** to delete role. +4. Click **Save**. + +## Congratulations! + +![Congratulations Badge](https://cdn.qwiklabs.com/Hgcj1JOh2iuL7imDUME0%2BjEemAfZlnOJoEHsVFIVQCY%3D#center)