For all of us who are taking a break we have the weekly challenges that started
Who's up for a challenge? Time to show off your #GoogleClout!
Starting today, check in every Wednesday to unlock a new cloud puzzle that will put your cloud skills to the test against participants from around the world. Stephanie Wong's previous record is 5 minutes, can you complete the new challenge in 4?
The #GoogleClout Challenge is a free 20-minute weekly hands-on challenge. Every Wednesday for the next 10 weeks, a new challenge will be posted on our website. Participants will compete against the clock to see how fast they can complete the challenge. Try the 20 minute challenge as many times as you like. The faster you go, the higher your score!
For all of us who are taking a break we have the weekly challenges that started this Wednesday
How does it work
To participate, follow these four easy steps:
Sign Up – Go to our website, click on the link to the weekly challenge and sign up for the mission with your Google Cloud Skills Boost account.
Play – Try the challenge up to 5 times. Remember that the faster you are, the higher your score will be!
Share – Share your scorecard on Twitter/LinkedIn using #GoogleClout
Earn – Complete all 10 weekly challenges to earn exclusive #GoogleClout badges
Ready to get started?
Take the #GoogleClout challenge today!
Continuing with the remains -- this week
Here is the link to register for the challenge.
#GoogleClout Set 2 (1/10) registration here
#GoogleClout Set 3 (2/10) registration here
#GoogleClout Set 4 (3/10) registration here
#GoogleClout Set 5 (4/10) registration here
#GoogleClout Set 6 (5/10) registration here
#GoogleClout Set 7 (6/10) registration here
#GoogleClout Set 8 (7/10) registration here
#GoogleClout Set 9 (8/10) registration here
#GoogleClout Set 10(9/10) registration here
#GoogleClout Set 11(10/10) registration here
Stay tuned for new updates to this post on Wednesdays 😉
Hi,
Can you help me to complete this lab. I'm having trouble finding the udp port and creating firewall rules
This query gives me a lot of dest-port -- how do i find the udp - port
jsonPayload.connection.src_ip,
jsonPayload.connection.dest_ip,
CAST(jsonPayload.bytes_sent AS INT64) AS bytes,
jsonPayload.connection.dest_port,
jsonPayload.connection.protocol,
jsonPayload.dest_vpc.subnetwork_name,
jsonPayload.src_vpc.subnetwork_name
FROM `qwiklabs-gcp-01-226abd3bdee3.flow_logs.compute_googleapis_com_vpc_flows_20220906`
where CAST(jsonPayload.bytes_sent AS INT64) = 0
LIMIT 1000
You need to filter out on protocol (protocol number for UDP is 17):
AWESOME ..... THANKYOU
#GoogleClout
Google Clout - Use VPC Flow Logs to unblock Traffic Flows Challenge.
0️⃣5️⃣ 🟦🟦🟥🟥
1️⃣0️⃣ 🟦🟦🟦🟦
1️⃣5️⃣ ⬜⬜⬜⬜
2️⃣0️⃣ ⬜⬜⬜⬜
Challenge completed in 5 minutes and 36 seconds !
https://www.cloudskillsboost.google/quests/203
hey have u tried clout 8 I am stuck at 75/100 can u please guide ...
you're good, I still have no idea how to do #GoogleClout Set 8 (7/10). 😖
could you briefly describe what steps you've done, then I may find out the clue to know the missing 25 points?
@fuchengyen @Abhishek213 Hope the below 📹 helps you 🙂
@yvssairamthanks for your help.
I found that the cloud build trigger's region must be 『global(non-regional)』, or it might encounter 『no concurrent build quota available to create builds』 error.
Thank you sucesssfully completed😃😃
Thank you @yvssairam the video really helped me.
Hi,
Can you help me to complete this lab. I'm having trouble finding the udp port
here is my Query --
i find many dest-port like 50762, 35410, 59250, 59256, 53116, 59250, 35410 -- which one is the one?
Also do we need to create two separate firewall rules one for allow-tcp and other allow-udp or just one with both rules allowed
Thanks a lot @Bholoubi @fuchengyen @cloud-jake
Finnaly completed clout 7😁😁
Congratulations
Your welcome.
#GoogleClout
Google Clout - Use VPC Flow Logs to unblock Traffic Flows Challenge.
0️⃣5️⃣ 🟦🟦🟥🟥
1️⃣0️⃣ 🟦🟦🟦🟦
1️⃣5️⃣ ⬜⬜⬜⬜
2️⃣0️⃣ ⬜⬜⬜⬜
Challenge completed in 6 minutes and 53 seconds !
https://www.cloudskillsboost.google/quests/203
#GoogleClout
CI/CD in a Google Cloud World Challenge.
0️⃣5️⃣ 🟦🟦🟥🟥
1️⃣0️⃣ 🟦🟦🟦🟥
1️⃣5️⃣ 🟦🟦🟦🟦
2️⃣0️⃣ ⬜⬜⬜⬜
Challenge completed in 13 minutes and 20 seconds !
I think that GKE Sandbox Fun was the most challenging one yet..... It took a few tries, but it was worth it.
#GoogleClout
GKE Sandbox Fun Challenge.
0️⃣5️⃣ 🟦🟦🟦🟦
1️⃣0️⃣ ⬜⬜⬜⬜
1️⃣5️⃣ ⬜⬜⬜⬜
2️⃣0️⃣ ⬜⬜⬜⬜
Challenge completed in 2 minutes and 41 seconds !
I found that building the 3 YAML files in advance and using sed to update the files before deploying really sped things up!
Good luck!
Hello
Thank you @cloud-jake for the hint
Hi,
could you please share some more insights while creating yaml files for step 3.
Please suggest
Hi @anand-patel -
I started by grabbing the sandbox-metadata-test.yaml file from the lab and making 3 versions - 1 for each deployment required in the challenge.
1 - First deployment uses the sample provided YAML file as-is, with "regular-app" replaced with the deployment and container name specified in part 1 of the lab - see sed commands below.
2 - The YAML file for the 2nd deployment is essentially the same as the first, with the added node affinity and toleration section provided in the lab appended to the end.
3 - The YAML file for the 3rd deployment is essentially the same as the 2nd, but with the "runtimeClassName: gvisor" added in the spec section.
Finally, once I had all 3 files prepared, I added the following sed commands in my script to update the deployment files with the name of the deployment specified in the lab.
# Update deployment files with variables
sed -e "s/regular-app/${DEPLOYMENTV1}/g" sandbox-metadata-test.yaml > tmp1 && mv tmp1 v1.yaml
sed -e "s/regular-app/${DEPLOYMENTV2}/g" sandbox-metadata-test-v2.yaml > tmp2 && mv tmp2 v2.yaml
sed -e "s/regular-app/${DEPLOYMENTV3}/g" sandbox-metadata-test-v3.yaml > tmp3 && mv tmp3 v3.yaml
Thanks for your hint.
I was doing wrong in step 3 hence not able to complete challenge.
Thanks..
Hi,
@cloud-jake thanks for tip i have left 2 try i now i have my best shoot:)
#GoogleClout
GKE Sandbox Fun Challenge.
0️⃣5️⃣ 🟦🟦🟦🟦
1️⃣0️⃣ ⬜⬜⬜⬜
1️⃣5️⃣ ⬜⬜⬜⬜
2️⃣0️⃣ ⬜⬜⬜⬜
Challenge completed in 1 minutes and 47 seconds !
https://www.cloudskillsboost.google/quests/203
Best,
Greg
#GoogleClout
CI/CD in a Google Cloud World Challenge.
0️⃣5️⃣ 🟦🟦🟦🟥
1️⃣0️⃣ 🟦🟦🟦🟦
1️⃣5️⃣ ⬜⬜⬜⬜
2️⃣0️⃣ ⬜⬜⬜⬜
Challenge completed in 9 minutes and 11 seconds !
https://www.cloudskillsboost.google/quests/203
Congratulations 👏
Hi @abhijithgm nice time 🙂
This is my best 🙂
#GoogleClout
CI/CD in a Google Cloud World Challenge.
0️⃣5️⃣ 🟦🟦🟦🟥
1️⃣0️⃣ 🟦🟦🟦🟦
1️⃣5️⃣ ⬜⬜⬜⬜
2️⃣0️⃣ ⬜⬜⬜⬜
Challenge completed in 7 minutes and 35 seconds !
https://www.cloudskillsboost.google/quests/203
Best,
Greg
#GoogleClout
Google Clout - Trigger a Cloud Run Workflow Challenge.
0️⃣5️⃣ 🟦🟥🟥🟥
1️⃣0️⃣ 🟦🟦🟦🟦
1️⃣5️⃣ ⬜⬜⬜⬜
2️⃣0️⃣ ⬜⬜⬜⬜
Challenge completed in 6 minutes and 52 seconds !
https://www.cloudskillsboost.google/quests/203
Nice @abhijithgm
My last try to get the best score
#GoogleClout
Google Clout - Trigger a Cloud Run Workflow Challenge.
0️⃣5️⃣ 🟦🟦🟥🟥
1️⃣0️⃣ 🟦🟦🟦🟦
1️⃣5️⃣ ⬜⬜⬜⬜
2️⃣0️⃣ ⬜⬜⬜⬜
Challenge completed in 5 minutes and 33 seconds !
https://www.cloudskillsboost.google/quests/203
Best,
Greg
Finally completed all 10/10 - whew......
Thanks for the fun and challenging quests!
Congratulations 👏
#GoogleClout
Cloud Endpoints API with ESP Challenge.
0️⃣5️⃣🟥🟥🟥🟥
1️⃣0️⃣🟦🟦🟦🟥
1️⃣5️⃣🟦🟦🟦🟦
2️⃣0️⃣⬜⬜⬜⬜
Challenge completed in 14 minutes and 0 seconds !
https://www.cloudskillsboost.google/quests/203
Completed all challenge
Read and understand this document. Its very easy.
Getting started with Cloud Endpoints for Compute Engine with ESP | Cloud Endpoints with OpenAPI |...
Congrats! Nice job!!
All the best for next challenges 😊
Hello
It is me who is proposed the #GoogleClout Set 10(9/10) registration here
I hope you enjoyed it. I'd love to hear your feedback on what you think of the challenge.
Yes this is very nice and i can use in my production cases with some more customization. But i think working solution is OK.
Best,
Greg
I'm glad you liked it.
@Richard_Rivero @cloud-jake @abhijithgm
GoogleClout Set 8 (7/10)
Google Clout - CI/CD in a Google Cloud World
Hello guys , I was working on cloud set 8 and the cloud source repo which I have to clone and edit seems empty , why is that? Is this challenge over? or is it a bug?
Hi @Ajay
I think is some error but if you can next time try to find if this repo exists or maybe you can search:
I get repo from lab so you can upload and unzip - pop-kustomize.zip
Best,
Greg
Hi , @GrzWas77
I was able to complete it , the second time. You are right it was some error
#GoogleClout
CI/CD in a Google Cloud World Challenge.
0️⃣5️⃣🟦🟥🟥🟥
1️⃣0️⃣🟦🟦🟦🟥
1️⃣5️⃣🟦🟦🟦🟦
2️⃣0️⃣⬜⬜⬜⬜
Challenge completed in 11 minutes and 50 seconds !
https://www.cloudskillsboost.google/quests/203
Hey greg have you done clout set 9, can you give me some hints / resource urls to complete the clout set 9 Google Kubernetes Engine Sandbox fun
Thanks
User | Count |
---|---|
34 | |
18 | |
5 | |
2 | |
1 |