Understanding Pod Controllers in Kubernetes
Common Pod Spec Fields
spec.containers <[]object>
spec.containers.name <string>: Container name, required and unique. Cannot be changed after creation.
spec.containers.image <string>: Image path/name:tag.
spec.containers.imagePullPolicy <string>: Image pull policy: Always, Never, IfNotPresent. Default is IfNotPresent, e ...
Posted on Tue, 26 May 2026 22:31:30 +0000 by yarons
Setting up a Three-Node Kafka+ZooKeeper Cluster on CentOS 7
Environment Setup
JDK Installation
yum install -y java-1.8.0
ZooKeeper Cluster Configuration
Downloading ZooKeeper
wget https://archive.apache.org/dist/zookeeper/zookeeper-3.7.0/apache-zookeeper-3.7.0-bin.tar.gz
tar xf apache-zookeeper-3.7.0-bin.tar.gz
Configurasion File Adjustments
# Backup sample configuration
# cp zoo_sample.cfg zoo.cfg
c ...
Posted on Fri, 22 May 2026 22:30:35 +0000 by fredriksk
From Docker Compose to Kubernetes with Kompose
Kompose is a CLI utility that translates docker-compose.yml files into native Kubernetes objects such as Deployments, Services, and PVCs. It eliminates the manual work of rewriitng Compose declarations into YAML manifests.
Installation
# Linux
curl -L https://github.com/kubernetes/kompose/releases/latest/download/kompose-linux-amd64 -o kompose
...
Posted on Tue, 19 May 2026 13:42:49 +0000 by clarket
Deploying Applications with Kubectl in Kubernetes
Kubectl Deploymant Workflow
The process for deploying applications using Kubectl involves several key steps:
Verify cluster readiness (Minikube or kubeadm)
Create Deployment configuration
Apply the configuration
Verify deployment status
Deploying a Sample Web Application
1. Creating the Deployment Configuration
A Deployment object manages app ...
Posted on Tue, 19 May 2026 07:14:38 +0000 by chokies12
Implementing CI/CD Pipelines with GitLab
GitLab CI/CD provides integrated tools for implementing continuous integration, delivery, and deployment practices. The system automates software development processes through script execution, minimizing human error and ensuring code quality throughout the development lifecycle.
Core CI/CD Concepts
Continuous Integration (CI) involves automati ...
Posted on Mon, 18 May 2026 03:54:58 +0000 by Fari
Establishing a Local Inference Pipeline for Open-Source Large Language Models
Prerequisites and Environment Configuration
Before deploying any model, ensure the Python environment is stable. Update package managers and configure mirror sources to improve download stability if network constraints exist.
Dependency Installation
Update pip first, then install core libraries required for Hugging Face or ModelScope models. Us ...
Posted on Fri, 15 May 2026 19:47:50 +0000 by mr_mind
Deploying Snipe-IT Asset Management System Using Docker
Snipe-IT is an open-source application for tracking IT assets, including hardware, software licenses, and accessories.
Setting Up the Docker Environment
Install Docker and Docker Compose on your host system.
Configuring Environment Variables
Create a directory for configuration files and generate an environment file.
mkdir -p /opt/snipe-it/conf ...
Posted on Fri, 15 May 2026 09:41:18 +0000 by ell0bo
Deploying Jenkins Using Docker
Pull the Jenkins Docker image.
docker pull jenkins/jenkins
Set up a persistent storage directory on the host and adjust permissions.
mkdir -p /var/jenkins_data
chmod 777 /var/jenkins_data
Launch a Jenkins container with custom configurations.
-d runs the container in detached mode.
-p 10240:8080 maps the container's Jenkins web interfac ...
Posted on Thu, 14 May 2026 13:26:49 +0000 by alexdoug
Automated Deployment Pipeline with Jenkins on Windows
1. Install JDK version 1.8 by downloading it from the official Oracle website (https://www.oracle.com/java/technologies/downloads/)2. Download the Jenkins installation package from https://jenkins.io/download/3. Follow the installation process which is well-documented across various online resources4. After installation, log in to the Jenkins i ...
Posted on Thu, 14 May 2026 09:00:06 +0000 by sactown
Understanding Project Lifecycles and Docker Deployment
This document outlines the typical stages of a project's lifecycle and explores modern approaches, with a focus on Docker deployment.
Project Lifecycles
Software projects, like all endeavors, progress through distinct phases. The evolution of the internet has significantly impacted these lifecycles. We can broadly categorize project lifecycles ...
Posted on Wed, 13 May 2026 01:29:21 +0000 by sapna