Concept Review (Volunteer Mentor)

Concept Review (Volunteer Mentor/Tutor)

  1. What is RADIUS?
    • Remote Authentication Dial-In User Service
    • It provides functionality similar to AD, so what does Active Directory do?
    • You can configure RADIUS to protect access to all kinds of resources: a...
7:05:33 PM 02/05/2024
Tags: Technology Fundamentals Concepts
Enabling Kube Dashboard (Headless K8) + Custom Services

In a previous post we completed our K8 PI Cluster, we're now going to configure everything necessary to utilize the Kube Dashboard for monitoring and — optionally — managing our deployment graphically.

The following command will deploy the base...

9:04:46 PM 16/04/2024
Tags: Kubernetes SystemD SSH
Creating a Custom Linux Service

Creating a Custom Linux Service

It often useful to create custom services to perform tasks without user intervention. They are flexible allowing you to customize or extend functionality whenever you need, and allow you the granularity of control to...

4:04:59 PM 14/04/2024
Tags: Linux SystemD
Building a Kubernetes Cluster on Raspberry Pi clones (Le Potato)

You may find my language uncharacteristically terse in this post, this is due to the large scope of topics we'll touch on. I consider any Kubernetes work: implementation, development or administration complex resulting from the number of technical...

1:04:07 PM 03/04/2024
Tags: Kubernetes K8 Raspberry-Pi
Deploying a Pi-Hole DNS Server (Network Level)

Prerequisites:

  • A device or single board computer with at least 512MB of RAM
  • 2GB+ Micro SD Card
  • Internet connection
  • Router admin console access

Begin by ensuring a static IP address is set on your device (or make...

6:03:27 PM 08/03/2024
Tags: Raspberry-Pi
Scripting Intro I (Tutoring)

Since I know you'll be working from multiple operating systems, we're going to start by ensuring we're all operating from a homogenous environment.

To accomplish this, we'll start by SSHing into a Windows 2019 Server to get some hands...

11:10:40 PM 08/10/2023
Tags: Tutoring PowerShell Bash SSH
PowerShell Fundamentals (Primer to PowerShell Scripting)

Let's break the following command down into its individual components

Get-EventLog -LogName Security -ComputerName REHl8SERV1, CENTOSSERV2 -Verbose

Components:

  • Command: Get-EventLog
  • Parameter Name 1: -LogName
    • Parameter Value 1: Security
  • Parameter Name 2: -ComputerName
    • Parameter Value 2 (multiple): REHl8SERV1, CENTOSSERV2
  • Parameter...
6:10:08 PM 07/10/2023
Tags: PowerShell Windows
Dissection of an Nginx Reverse Proxy Configuration

Dissection of an Nginx Reverse Proxy Configuration

Really, just the Server Blocks portion (equivalent to VirtualHosts for Apache challenged folks)

Below is the configuration file for this blog/web application which sits within /etc/nginx/conf.d/ known as

devopsblog.conf

Line by line let's review...

9:09:40 AM 19/09/2023
Tags: Nginx Python