Monthly Archives: November 2022

Kubernetes Issues

Overview This article lists a couple of issues that occurred while I was building this environment. The issues don’t fit into any of the specific articles mainly because it was likely due to my testing vs anything that occurred during … Continue reading

Posted in Computers, Kubernetes | Tagged , , | Leave a comment

Llamas Band and Continuous Delivery

Overview In this article, I’ll be providing details on how to configure ArgoCD for the Llamas Band project including deploying to the other sites. Continuous Delivery With ArgoCD installed and the Llamas container CI pipeline completed, we’ll use this configuration … Continue reading

Posted in CI/CD, Computers, Git | Tagged , | 1 Comment

Llamas Band Website

Overview This article provides instructions in how to build my llamas container and then how to deploy it into my kubernetes cluster. In addition, a Horizontal Pod Autoscaling configuration is used. Container Build The llamas website is automatically installed in … Continue reading

Posted in Computers, Docker, Kubernetes | Tagged , , , | 1 Comment

GitLab CI/CD Pipeline

Overview This article provides details on my use of the GitLab Runners in order to deploy websites and then automatically build, tag, and push images to my local docker repository. Runner Installation I’ve been using Jenkins for most of my … Continue reading

Posted in CI/CD, Computers, Docker, Git, Kubernetes | Tagged , , , , | 1 Comment

Continuous Delivery With ArgoCD

Overview This article provides instructions in installing and configuring ArgoCD in Kubernetes. Installation The main task here is that Openshift is using ArgoCD so we should be familiar with how ArgoCD works. Images Installation-wise, it’s pretty easy. There are a … Continue reading

Posted in CI/CD, Computers, Kubernetes | Tagged , | 1 Comment

Ingress Controller

Overview There are multiple IP assignments used in Kubernetes. In addition to the internal networking (by Calico in this case), you can install an Ingress Controller to manage access to your applications. This article provides some basic Service information as … Continue reading

Posted in Computers, Kubernetes | Tagged , , , , , | 1 Comment

Persistent Storage

Overview In this article I’ll configure and verify Persistent Storage for the Kubernetes cluster. Installation This is a simple installation. The NFS server has 100 gigs of space which will be used for any Persistent Volume Claims (PVCs) needed by … Continue reading

Posted in Computers, Kubernetes | Tagged , , | 1 Comment

Kubernetes Networking

Overview This article provides instructions in installing the networking layer to the Kubernetes clusters. Calico Networking You’ll need to install Calico which is the network layer for the cluster. There are two files you’ll retrieve from Tigera who makes Calico. … Continue reading

Posted in Computers, Kubernetes | Tagged , | 1 Comment

Kubernetes Metrics Server

Overview The metrics server collects metrics from your kubernetes cluster. It’s also used by the Horizontal Pod Autoscaling (HPA) function to let you manage pods. Installation For my clusters, it’s a pretty simple configuration. I retrieve the components.yaml file from … Continue reading

Posted in Computers, Kubernetes | Tagged , , , | 1 Comment

Installing Kubernetes

Overview This article provides instructions in building the Kubernetes cluster using kubeadm and any post installation requirements. Build Cluster On the first control plane node run the kubeadm command. After the first node has been initialized, the connect strings will … Continue reading

Posted in Computers, Kubernetes, Uncategorized | Tagged , | 1 Comment