Launch | four important functions of Clusterpedia 0.1.0

The first version of Clusterpedia , Clusterpedia , 0.1.0 , was officially released and will enter the version iteration stage from now on. Compared with the initial 0.0.8 and 0.0.9-alpha, 0.1.0 added many functions and made some incompatible updates. If you upgrade from 0.0.9-alpha, you can refer to 0.1.0 upgrade to clusterpedia https: ...

Added by soadlink on Tue, 01 Mar 2022 08:08:34 +0200

Binary installation Kubernetes (k8s) v1 23.4 ---

6.k8s component configuration (different from point 4)All k8s nodes create the following directoriesmkdir -p /etc/kubernetes/manifests/ /etc/systemd/system/kubelet.service.d /var/lib/kubelet /var/log/kubernetes6.1. Create apiserver (all master nodes)6.1.1master01 node configurationcat > /usr/lib/systemd/system/kube-apiserver.service << ...

Added by pranav_kavi on Tue, 01 Mar 2022 05:51:45 +0200

Introduction to k8s actual combat

preface This blog will introduce how to deploy and access an nginx service in a k8s cluster. This article is a brief introduction to the following five concepts. The details are in the subsequent blog posts of the column. Namespace introduce Namespace is a very important resource in k8s system. Its main function is to realize resource i ...

Added by cypher235 on Mon, 28 Feb 2022 16:18:28 +0200

Gopher to Rust hot eye grammar ranking

Gopher to Rust hot eye grammar rankingAuthor: Zhongyi - sealos author, sealer initiatorTOP 10 often forget to write semicolonsfn add_with_extra(x: i32, y: i32) -> i32 { let x = x + 1; // sentence let y = y + 5; // sentence x + y // expression }When you first turn from golang, you must often forget to write semicolons. For Rust la ...

Added by N1CK3RS0N on Mon, 28 Feb 2022 11:32:54 +0200

A case study of kubernetes Service concept

This paper mainly illustrates with examples: As shown below, a Pod collection that provides web services is composed of two copies of Tomcat containers. The service port number provided by each container is 8080: apiVersion: apps/v1 kind: Deployment metadata: name: webapp spec: replicas: 2 selector: matchLabels: app: webap ...

Added by tckephart on Sat, 26 Feb 2022 09:52:48 +0200

Kubernetes log query analysis practice

Introduction: This paper will introduce how to collect and query and analyze Kubernetes (hereinafter referred to as K8s) logs based on log service. In addition, a brief introduction to Ingress and Audit schemes is attached. In order to facilitate you to deepen your understanding through operation, this paper provides detailed operation steps, c ...

Added by coderb on Fri, 25 Feb 2022 16:35:26 +0200

Troubleshooting of an external domain name error in Pod resolution in K8s

WeChat official account: operation and development story, author: Mr. Dong Zi 1. Fault phenomenon We have an agent agent service. After publishing to the k8s cluster, the pod status is Running, but the server has been unable to receive the heartbeat signal. Therefore, we go to the cluster to check the log and find a large number of TCP time ...

Added by raahatazim on Tue, 22 Feb 2022 18:25:13 +0200

Kubenetes study notes Namespace

What is a Namespace In Kubernetes, namespaces provide a mechanism for isolating resource groups in a single cluster. Resource names must be unique within a namespace, but not across namespaces. Namespace based scope only applies to namespace objects (such as deployment, service, etc.), not cluster wide objects (such as StorageClass, Nodes, Per ...

Added by DJ Unique on Tue, 22 Feb 2022 14:08:17 +0200

How do Kubernetes clusters support private images

Introduction: This article mainly introduces how to use private image to arrange containers in Kubernetes cluster. For image download, domain name resolution and time synchronization, please click Alibaba open source mirror station Operation method Kubernetes clusters support the use of private images to orchestrate containers. First, you ...

Added by jrbush82 on Mon, 21 Feb 2022 16:12:13 +0200

Introduction to Kubernetes proficient in DaemonSet, Job, CronJob controller

What is a daemon set The daemon set ensures that a copy of a Pod is running on all (or some) nodes. When nodes join the cluster, a new Pod will be added for them. When a Node is removed from the cluster, these pods will also be recycled. Deleting a DaemonSet will delete all pods it creates Some typical uses of using DaemonSet: Run the cluste ...

Added by foxtrotwhiskey on Mon, 21 Feb 2022 09:26:48 +0200