Finding Approaches to Writing AI Agents After a Month

Finding Approaches to Writing AI Agents After a Month

1. Continuously Trying to Implement AI Application End Based on my understanding of operations and maintenance, I developed an open-source operation and maintenance tool https://github.com/shaowenchen/ops. The Ops tool divides operation and maintenance tasks into two categories: script execution and file distribution, while the operation and maintenance targets, hosts and Kubernetes clusters, implement these two types … Read more

Quick Understanding of Kubernetes Storage Concepts

Quick Understanding of Kubernetes Storage Concepts

Kubernetes has become the de facto standard for cloud-native distributed operating systems, with its greatest advantage being scalability. Whether in computing, storage, or networking, it can flexibly expand according to user needs. I once shared on the topic of Kubernetes Storage within my team, with content that was quite basic, aimed at inspiring everyone’s thoughts. … Read more

Containerd Basics: A Comprehensive Guide

Containerd Basics: A Comprehensive Guide

This article covers: 1. Installing Containerd 2. Running a busybox image 3. Creating a CNI network 4. Enabling network functionality for containerd containers 5. Sharing directories with the host 6. Sharing namespaces with other containers 7. Using docker/containerd together 1. Installing Containerd Local installation of Containerd: yum install -y yum-utils yum-config-manager –add-repo https://download.docker.com/linux/centos/docker-ce.repo yum install … Read more

Principles to Implementation | K8S Storage with NFS

Principles to Implementation | K8S Storage with NFS

Click on the “K8S Chinese Community” above and select “Top Official Account” Key moments, delivered at the first time! 1 NFS Introduction NFS stands for Network File System, which is a type of file system supported by FreeBSD. NFS is implemented based on RPC (Remote Procedure Call), allowing a system to share directories and files … Read more

Best Practices for Slimming Docker Images in Kubernetes

Best Practices for Slimming Docker Images in Kubernetes

In production environments, it is often necessary to slim down container images, which means making the images built from the Dockerfile small enough. This article introduces how to elegantly reduce the size of Docker images. Benefits of Slimming Images Reduces build time. Reduces disk usage. Reduces download time, speeding up container startup, which is particularly … Read more

Lightweight Kubernetes Cluster on Raspberry Pi with Servercore

Lightweight Kubernetes Cluster on Raspberry Pi with Servercore

Servercore is a dynamic cloud platform that recently launched its servers in the vibrant city of Nairobi, Kenya. I was attracted by their free coupon offer to experience their cloud resources, so I couldn’t resist exploring their proud unique server specifications, including the Raspberry Pi 4B server. Servercore: https://servercore.com/ In this guide, we will introduce … Read more

Understanding Kubernetes Probes and Health Checks in 5 Minutes

Understanding Kubernetes Probes and Health Checks in 5 Minutes

Kubernetes is an open-source container orchestration platform that greatly simplifies the creation and management of applications. Distributed systems like Kubernetes can be challenging to manage because they involve many active components, all of which must work properly for the entire system to run smoothly. Even if a small component fails, it needs to be detected … Read more

How to Quickly View Logs Before Kubernetes Pod Crash

How to Quickly View Logs Before Kubernetes Pod Crash

链接:https://blog.csdn.net/qq_43684922/article/details/128881716 When a pod is in a crash state, the container keeps restarting, and using kubelet logs may result in not being able to capture the logs. The solution is: kubectl previous parameter function: If true, print the logs for the previous instance of the container in a pod if it exists. Single-container pod: kubectl … Read more

Understanding Docker: A Comprehensive Guide to Containerization

Understanding Docker: A Comprehensive Guide to Containerization

(Give ImportNew a star to enhance your Java skills) Author: huashiou segmentfault.com/a/1190000019462392 Off-topic Recently, I have been learning about Docker and Kubernetes. A few days ago, I gave a technical presentation, and upon listening to the recording of my speech, I realized that just preparing a good PPT is far from enough. Without a well-prepared … Read more