04-kubernetes Network Communication

Catalog kubernetes Network Communication Problems to be solved flannel Calico/Cannel kubernetes Network Communication Problems to be solved Communication between different containers within the same pod, local Communication between Pod s Communication between pod and Service: PodIP<-- ...

Posted by lhale on Mon, 29 Jul 2019 09:46:56 -0700

k8s ingress principle and ingress-nginx deployment test

The previous article talked about service. This article is about ingress. What is ingress? The last article introduced service, which exposed three ways of service: Cluster ip, NodePort and LoadBalance. These three ways are provided in the service dimension. The function of service is embodied in two aspects. Within the cluster, it keeps track ...

Posted by foyer on Mon, 29 Jul 2019 03:49:50 -0700

kubernetes CRD is so simple

Original address Extending kubernetes is the two most commonly used and most needed things to master: custom resources CRD and adminsion web hook. This article teaches you how to master CRD development in 10 minutes. kubernetes allows users to customize their own resource objects, just like deployment stateful settings, which are widely used. F ...

Posted by metin on Fri, 26 Jul 2019 21:15:10 -0700

k8s practice 18:statefulset learning configuration record

1.Basic concepts statefulset, which can be translated into stateful settings. Contrast with deployment The pod created by deployment deployment is stateless. The rescheduling of pod, the name of pod hostname, the order of starting pod and deleting pod are random. The deployment uses shared storage, and all pods share a single volume. The pod c ...

Posted by kittrellbj on Thu, 25 Jul 2019 03:28:26 -0700

kubernetes Practice Guide

1. Prerequisites for deployment2. CA and private key3. Deployment of kubectlIV. Deployment of etcd5. Deployment of flannel 1. Prerequisites for deployment The next few articles focus steadily on the 1.14.3 version of the binary installation of kubernetes 1. Version information docker:v17.06.0-ce etcd:v3.2.26 flannel:v0.11.0 Kubernetes:v1.14.3 ...

Posted by Akenatehm on Wed, 24 Jul 2019 12:12:53 -0700

k8s and Admission--webhook admission

Preface Kubernetes provides three security access control measures for API access: authentication, authorization and Admission Control. Authentication solves the problem of who the user is, and authorization solves the problem of what the user can do. Admission Control is the role of resource management. Reasonable authority management can ensu ...

Posted by miccomte on Mon, 22 Jul 2019 02:29:24 -0700

ACK Container Service Virtual Node uses Aliyun Log Service to collect business container logs

According to this article Bowen In this paper, virtual nodes can be deployed on ACK cluster by Helm to improve the resilience of cluster. Now, the example of ECI elastic container deployed by virtual node also supports the unified management of stdout output and log files synchronized to Aliyun Log Service (SLS). All logs can be collected in th ...

Posted by mahaguru on Mon, 22 Jul 2019 00:51:04 -0700

Installation of Kubernetes 1.15 full version under centos7

Introduction to Kubernetes Kubernetes (K8S) is an open source container cluster management system, which can realize the functions of automatic deployment, automatic expansion and maintenance of container cluster. It is not only a container layout tool, but also a new distributed architecture leading sc ...

Posted by mdkelly_komex on Sun, 21 Jul 2019 04:34:35 -0700

Organizational Approach of Microservice Infrastructure Components

brief introduction Micro is a micro-service framework implemented in go language, which realizes several common elements of services, such as gateway, proxy, registry, messaging, and also supports pluggable extension. This article explores how the project implements these components and organizes them to work together through a core object in m ...

Posted by RedMist on Sat, 20 Jul 2019 07:32:03 -0700

kubernetes High Availability Cluster (Multi master, v1.15 Official Latest Edition)

Introduction Kubernetes has been operating in our production environment for nearly a year, and is now running steadily. From the construction of the system to the migration of the project, there have been many problems. The production environment uses multiple master nodes to achieve high availability of kubernetes, and uses haproxy+keepaliv ...

Posted by anupamsaha on Tue, 09 Jul 2019 17:29:03 -0700