Bored? Read some articles!
Kubernetes – Cluster Setup Guide
Overview: Setup 3 Servers (K8s Control Plane - Master), K8s Worker1 (node1) and K8s Worker2 (node2)Install packages for all 3 servers.Install and setup containerdInstall Setup Kubernetes packagesInitialize the Kubernetes cluster on the control plane node using...
Windows Toolbar – Show data with bash and cron
So in MAC, you can install an app called XBAR to run scripts and run it for a period of time like CRON like this screenshot. In this article, I'll show you to do similar things in Windows. Here are the steps: Step 1. Create a folder Add a folder for your toolbar. In...
Google Cloud Platform example data flow using GCE and GCS
This article will show a basic data flow example from Google Cloud Platform. It will be utilizing the GCE (Google Cloud Compute Engine) and GCS (Google Cloud Storage) It will be using a script to automate all the processes. This data flow will do the following: Setup...
Google Cloud Console Example Commands
Useful commands from Google Cloud Console. Google Cloud StorageCompute Enginegcloud syntax Google Cloud Storage This will get the list of config like account name, project, etc. gcloud config list. johnmarkcausing@cloudshell:~ (esoteric-code-327621)$ gcloud config...
BigQuery sample SQL queries from GCP
Below is the list of example SQL queries from GCP built-in public available billing table. SELECT * FROM `cloud-training-prod-bucket.arch_infra.billing_data` The field of cloud-training-prod-bucket.arch_infra.billing_data is the public dataset we are working...
ELK logstash – send /var/log/syslog to Logstash
Install logstash with the steps below or just use this guide in case it won't let you to install via apt. sudo apt-get update && sudo apt-get install logstash Create your syslog.conf file. input { tcp { port => 5000 type => syslog } udp { port => 5000...