Yesterday, I get a host key verification error when I tried to pull or push changes to our Github.com repository. The error message itself suggested how to fix it by […]
Author: lysender
TIL – JavaScript append an array to an array

I was today’s years old when I learn that you can actually append an array to an array using the push method instead of the concat method. concat is nice […]
mysqldump – Unknown table COLUMN_STATISTICS

As I reviewed my MySQL backups, I noticed that the data is too small and as I review the logs, I get these error: Unknown table ‘COLUMN_STATISTICS’ in information_schema (1109). […]
Bitnami Helm Charts Index Issues

Several months ago, we noticed that our Jenkins-X pipeline is failing at promotion stage due to Bitnami’s helm chart repo index being trimmed. There was a one-liner fix but because […]
smee.io proxy service down – what now?

The webhook payload delivery service smee.io is down today and was having some down time in the past few weeks as well due to too much traffic. I know its […]
TypeScript – Type Hint An Array Of Functions

I’ve been more verbose on adding types on my TypeScript codes lately as it tends to be very useful in future reading and refactoring. Recently, I needed to add a […]
VirtualBox – Ubuntu 20 Guest – Shared Folder Not Working

This scenario is for long time users who happened to recently upgrade to Ubuntu 20 then their shared folder didn’t work suddenly. TLDR: You just need to upgrade your VirtualBox […]
Jenkins-X 3 and Helm – Creating Secrets

Our setup is using Google Secret Manager as we are already in the Google Cloud platform. With Jenkins-X 3, it is easier to manage secrets without even knowing the internal […]
Setting secrets for Dex in Jenkins-X and Kubernetes

Dex is a nice little application that you can add to your Kubernetes cluster (easier when combined with Jenkins-X and Helm) that allows your user to authenticate via various OAuth […]