yaml file details of Kubernetes - v1.15.x

yaml file of Kubernetes How K8S creates resources K8S has two ways to create resources: the kubectl command and the yaml configuration file. kubectl command line: The simplest one is OK, but the drawback is obvious. You don't know what's going on behind this command!yaml Configuration File: Provides a way for you to know more about what it is. ...

Posted by samuelxin on Thu, 15 Aug 2019 10:14:07 +0200

Build kubernetes cluster + istio service grid from scratch

(win10,virtualbox ,centos) This article refers to the website:https://www.jianshu.com/p/e43f5e848da1https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/install-kubeadm/https://www.jianshu.com/p/1aebf568b786https://blog.csdn.net/donglynn/article/details/47784393https://blog.csdn.net/MC ...

Posted by dr-dre67 on Mon, 12 Aug 2019 11:08:28 +0200

Customized development of kubernetes process

Three-step installation of kubernetes cluster Summary This paper introduces how to redevelop kubernetes, how to manage warehouses, how to manage git branches, how to compile and distribute code by CI, and how to contribute code to the community. With practical examples, it is hoped to be helpful to everyone. <!--more--> Construction of De ...

Posted by x_maras on Wed, 07 Aug 2019 09:30:46 +0200

Kubernetes Cluster Construction: Based on Kubeadm

First, environmental preparation * K8S version 15.1 * Docker version supports up to 18.06.1 Second, Docker Environment Construction and Replacement 1. Clear the original Docker environment, the original version is the latest version yum remove docker \ docker-client \ ...

Posted by tmbrown on Sun, 28 Jul 2019 07:48:15 +0200

Kubernetes 1.6 New Feature Learning: RBAC Authorization

Summary The access control process of API Server in Kuberntes is illustrated as follows: In Kubernetes, authorization is a step after authentication. Authorization is to determine whether a user (ordinary user or Service Account) has the right to request the Kubernetes API to do something. Previously, the authorization strategy i ...

Posted by morris520 on Wed, 03 Jul 2019 21:44:48 +0200