Ingress Controllers Deployment for Kubernetes addons

Ingress An API object, typically HTTP, that manages external access to services in a cluster. Ingress provides load balancing, SSL termination, and name-based virtual hosts. What is Ingress Ingress, Kubernetes v1.1 started to increase, exposing cl ...

Posted by wacook on Mon, 02 Sep 2019 19:29:29 -0700

Kubernetes Command Line Management Tool-Kubectl

Enclosed: Meow a Mimi's blog: w-blog.cn Kubernetes official documents: https://kubernetes.io/docs/reference/ Kubernetes official Git address: https://github.com/kubernetes/kubernetes PS: This series uses Kubernetes V1.8 Rancher V1.6.14 I. Installation of Kubectl in China The installation commands provided by the official website are: curl ...

Posted by jannz on Thu, 29 Aug 2019 00:53:21 -0700

Monitor containers, apiserver s, and auto-discovery and monitoring services with prometheus

Use the built-in cAdvisor monitoring containerCAdvisor is already built into the kubelet component, so we do not need to install it separately. The data path of cAdvisor is / api/v1/nodes/<node>/proxy/metrics1. Add job s, update prometheus configuration - job_name: 'kubernetes-cadvisor' kubernetes_sd_configs: - role: node scheme: h ...

Posted by jeffkee on Mon, 26 Aug 2019 18:28:16 -0700

Kubernetes Installation Handbook-kubeadm

10. Kubernetes Practice Papers 10.1) Three ways to install Kubernetes (officially available) 10.1.1)minikubeMinikube is a tool that allows you to quickly run a single Kubernetes locally and try it out with Kubernetes or users of everyday development.It cannot be used in a production environment. Official documents: https://kubernetes.io/docs/ ...

Posted by Spikey on Sun, 25 Aug 2019 11:15:58 -0700

HELM that K8S has to learn

A basic concept helm is similar to package manager under Linux system, such as yum/apt, which can deploy yaml files packaged before into kubernetes quickly and conveniently for management and maintenance. helm: A command-line client tool for creating/packaging/publishing kubernetes application charts that have been created and managed and rem ...

Posted by sunwukung on Wed, 21 Aug 2019 00:25:52 -0700

kubeadm deployment kubernetes (version 1.15.2) - - take you around the pit

K8S is so popular, there are many online tutorials, but the official update is too fast, many deployment tutorials have lagged behind, and there are countless pits, for beginners, not everyone has the ability to climb out. For every student who wants to make progress, deploying K8S is a mountain. If you can deploy it clearly, you already know ...

Posted by yaron on Wed, 14 Aug 2019 05:16:16 -0700

Kubernetes: Deployment and ReplicaSet

Background Deployment and ReplicaSet are two important objects in Kubernetes. This paper briefly discusses some differences and connections between them. Two Deployment apiVersion: apps/v1 kind: Deployment metadata: name: deployment-gysl spec: replicas: 2 selector: matchLabels: app-1: nginx app-2: busybox template: m ...

Posted by agulaid on Thu, 08 Aug 2019 05:33:12 -0700

kubeadm Build Highly Available kubernetes 1.15.1

role IP role operating system Remarks 192.168.10.210 master CentOS 7 haproxy,keepalived master 192.168.10.211 master CentOS 7 Haproxy, keep alived ready 192.168.10.212 master CentOS 7 Haproxy, keep alived ready 192.168.10.213 node CentOS 7 Do Nodes Only Host preparation:1. Install necessary software and upgrade all software yum - ...

Posted by kryles on Sun, 04 Aug 2019 09:23:16 -0700

A thorough understanding of kubernetes CNI

Off-line installation packages for various versions of kubernetes CNI interface is very simple, especially some novices must overcome the fear, and I explore unexpectedly, this paper combines theory and practice, read down carefully will be very thorough understanding of the principle.<!--more--> Environmental Introduction When we instal ...

Posted by daglasen on Fri, 02 Aug 2019 03:48:39 -0700

Installing Kubernetes1 with kubeadm

Installing Kubernetes 1.13.3 using kubeadm Preparatory environment: two CentOS 7 system servers, 2 cores, 2G host name Ip role K8s-master 192.168.2.7 K8s master node K8s-node1 192.168.137.4 K8s slave node 1 Docker version: 1.18.3 Kubernetes Version: 1.13.3 (1) Preparations (1) All nodes ...

Posted by callisto11 on Thu, 01 Aug 2019 20:29:52 -0700