John Mark Causing

System Administrator | Hosting Support Engineer

Bacolod City, Philippines

+639393497018

John Mark Causing

System Administrator | Hosting Support Engineer

Bacolod City, Philippines

+639393497018

Bored? Read some articles!

Kubernetes – Cluster Setup Guide

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...

Google Cloud Platform example data flow using GCE and GCS

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

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

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

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...