007.Kubernetes binary deployment Flannel

I. deployment of flannel 1.1 installation of flannel kubernetes requires that all nodes in the cluster (including the master node) can be interconnected through the Pod network segment. flannel uses vxlan technology to create an interoperable Pod network for each node. The port used is UDP 8472. When flanneld is started for the first time, ...

Added by PHPycho on Fri, 15 Nov 2019 14:41:54 +0200

pod status always shows ContainerCreating

Today, when learning kubernetes, I started an msyql service and ran the command [root@liuxuchong kubernetes]# kubectl create -f mysql-rc.yaml replicationcontroller "mysql" created [root@liuxuchong kubernetes]# kubectl get all NAME DESIRED CURRENT READY AGE rc/mysql 1 1 0 6m NAME CLUSTER-IP ...

Added by tjohnson_nb on Sun, 10 Nov 2019 17:22:12 +0200

Building a continuous deployment on containers and best practices

To understand continuous integration and deployment, you need to understand its components and the relationships between them.The diagram below is the most concise and clear diagram of continuous deployment and integration I've ever seen. picture source Continuous deployment: As shown in the diagram, the development process is as follows:Progr ...

Added by floR on Fri, 08 Nov 2019 05:03:41 +0200

Kubernetes uses nginx to reverse proxy other services

The company uses K8S to build a test environment, and there are multiple sets of test exchanges. The current idea is to use an export IP for each set of test environment.The plan:1. Build ingress2. Build a reverse agent Combined with the actual situation, we use to build a reverse agent to solve this problem. The following K8S services exist i ...

Added by Mav666 on Sat, 02 Nov 2019 14:05:00 +0200

How to delete k8s resource objects in batch

This article was first published on the public account [my little bowl soup] to scan the QR code at the end of the article for attention, exchange and study together In cloud platform development and middleware containerization, there is often a need to delete k8s resource objects in batches. Here are some examples of kubectl and golang sending ...

Added by obsidian on Wed, 16 Oct 2019 05:11:19 +0300

Source Code Analysis of Garbage Collector in kubernetes Garbage Recycler

kubernetes version: 1.13.2 background Because of the redis cluster created by the operator, the redis cluster is deleted abnormally (including the redis exporter statefullset and redis statefullset) after the kubernetes APIs server is restarted. After deletion, the operator rebuilds and reorganizes the cluster, and the instance IP changes (mi ...

Added by Whitestripes9805 on Wed, 16 Oct 2019 04:54:16 +0300

Actual Production Environment: Detailed Explanation of the Latest K8s Lables

In this article, I will send a link to any mirror I use for you to download and learn! yaml please download to my github to learn! github: https://github.com/heyangguang If you have any questions, please contact my Email directly: heyangev@cn.ibm.com. Labels official website https://kubernetes.io/docs/co... Labels introduction Literally, it mea ...

Added by PHPist on Sun, 06 Oct 2019 11:33:14 +0300

How to Deploy Application Management/Publishing System Spinnaker on Ali Cloud Container Service ACK

Spinnaker is an open source, multi-cloud, continuous delivery platform that helps you manage applications and deliver applications quickly. Spinnaker's two main functions are: Application management , Application delivery Applications, clusters, and server groups are very important concepts in Spinnaker. Load balancers and firewalls describe ...

Added by Miichael on Wed, 25 Sep 2019 12:04:30 +0300

kubeadm of Kubernetes Series Builds k8s Cluster

Kubeadm Builds k8s Cluster Note: The Kubernetes series uses 1.15 versions of kuberntetes.+ 1 Master Node Installation 1.1 System Environment Configuration 1.1.1 Setting Host Name hostnamectl set-hostname kmaster-01 hostnamectl set-hostname knode-01 hostnamectl set-hostname knode-02 vi /etc/ho ...

Added by kingnutter on Sat, 21 Sep 2019 10:00:01 +0300

How to Debug Service in Knative

What if the service deployed in Knative is abnormal? Don't worry. This article teaches you to step by step in Knative. View command line output Check whether the command output to execute the deployment is successful or not. If the command deployment is interrupted, you can see the reason for the deployment failure in the output information. ...

Added by 86Stang on Wed, 11 Sep 2019 07:20:17 +0300