This is part 1 of a 4-part series on deploying an application to Azure Kubernetes. Here's a full list of this series: k8spractice Overviewk8spractice PostgreSQL Service Deploymentk8spractice Servicesk8spractice Ingress Rules (this post) Deploy Nginx Ingress Controller To help with exposing our web services we need to setup an ingress controller. For k8spractice I'm using NGINX … Continue reading k8spractice Ingress Rules
k8spractice Overview
This is part 1 of a 4-part series on deploying an application to Azure Kubernetes. Here's a full list of this series: k8spractice Overview (this post)k8spractice PostgreSQL Service Deploymentk8spractice Servicesk8spractice Ingress Rules I started k8spractice after completing the Kubernetes Fundamentals course as part of preparing for the Certified Kubernetes Administrator exam. Aside from practicing what … Continue reading k8spractice Overview
k8spractice Services
This is part 3 of a 4-part series on deploying an application to Azure Kubernetes. Here's a full list of this series: k8spractice Overviewk8spractice PostgreSQL Service Deploymentk8spractice Services (this post)k8spractice Ingress Rules Now that we have a running PostgreSQL server with the necessary database, tables, and roles configured it's time to deploy k8spractice web app … Continue reading k8spractice Services
k8spractice PostgreSQL Service Deployment
This is part 2 of a 4-part series on deploying an application to Azure Kubernetes. Here's a full list of this series: k8spractice Overviewk8spractice PostgreSQL Service Deployment (this post)k8spractice Servicesk8spractice Ingress Rules Motivation First, I want to point out that Azure provides a PostgreSQL service (see here for info) that you should prefer in a … Continue reading k8spractice PostgreSQL Service Deployment
Working At Home Sitting/Standing Cycle
In the past few months of working from home I started having aches and pain around my shoulder and chest area. I have a rising desk that allows me sit and stand like I've been doing in the office with the sit/stand keyboard tray (side note: getting it mounted gave us a bit of amusement; … Continue reading Working At Home Sitting/Standing Cycle
COVID-19
No real thoughts on the subject; just want to put this as a historical marker of sorts. Some things that have gone on so far: All the school-age kids are doing distance learning/homeschooling for at least another week.Movement/travel throughout the world have significantly slowed down.Restaurants are only available for to-go/delivery orders. No dine ins currently.I've … Continue reading COVID-19
Return Proper Exit Code, One Must
While working on functional tests for tlslookieloo I discovered that it's not returning an error exit code when it exits because of a configuration issue. This oversight would make it difficult to use tlslookieloo as part of automated testing.
tlslookieloo 0.1.0 Released
After a few months of working on it on the side tlslookieloo 0.1.0 is finally out the door. I'm releasing it as an alpha version; because, I worked on it alone for the most part. Keane Wolter (@d43m0n3y3, LinkedIn) helped out by reviewing the documentation and smoke tested it on a different platform. Why build … Continue reading tlslookieloo 0.1.0 Released
Mocking C APIs in testing
I started working on tlslookieloo after failing to find a utility that I can use to basically MITM a client-server application I was testing at work. I looked at sslsniff and Cisco Talos' Mutiny Fuzzing Framework and Decept Proxy to see if it provides what I need, or modify it for my own needs. In … Continue reading Mocking C APIs in testing
Keeping Upstream and Working git Repos In Sync
This tutorial is intended for git beginners who need to sync up their working repo with changes made to the upstream repo. Cloning repos within collaboration platforms such as gitlab will not be part of this tutorial. Setup For the purposes of this project, we will use https://github.com/w3c-social/activipy as the upstream repository. Create a clone of the project, and … Continue reading Keeping Upstream and Working git Repos In Sync