Tungsten Fabric solution guide - Kubernetes integration
Author: Tony Liu translator: TF Compilation Group
1 integration of kubernetes and TF
In the integration scheme, there are two connections between Kubernetes and Tungsten Fabric.
Contract Kube manager and Kube API server
Contrail CNI
1.1 contrail-kube-manager
This service connects to the Kube A ...
Posted by dmrn on Tue, 23 Jun 2020 11:09:18 +0200
Attachment 023.Kubernetes_v1.18.3 high availability deployment architecture II
Attachment 024.Kubernetes_v1.18.3 high availability deployment architecture II
Introduction to kubeadm
kubeadm overview
Refer to attachment 003.Kubeadm deployment Kubernetes.
kubeadm function
Refer to attachment 003.Kubeadm deployment Kubernetes.
Description of the scheme
Kubernetes version 1.18.3 is deployed by kubeadm;
etcd adopts mixed mo ...
Posted by neroag on Tue, 16 Jun 2020 08:29:35 +0200
Kubernetes version 1.18.3 binary deployment
Tags (space delimited): kubernetes series
1: Introduction to system environment2: Deploy Etcd Cluster3: Install dockerIV: Deploy k8s Master NodeFive: Deploy k8s Worker NodeSix: Deploy Dashboard and Core DNS
1: Introduction to system environment
1.1 Environmental Preparation
Before you begin, deploying the Kubernetes cluster machine require ...
Posted by cmos on Sun, 14 Jun 2020 20:29:01 +0200
Binary installation k8s
Article catalog
1, Kubernetes platform environment planning
1. Environment
2. Component allocation planning
2, Three official deployment methods
1.minikube
2.kubeadm
3. Binary package
4. Preparation before deployment (important!! )
3, Self signed SSL certificate
1. Generate etcd certificate
cfs ...
Posted by figo2476 on Sat, 13 Jun 2020 10:39:21 +0200
Kubernetes: Build a Windows version of Kubernetes based on WSL2 and Kind or Minikube
The original was published in Chinese Community of kubernetes , an original translation for the author, Original Address
More kubernetes articles, please pay more attention Chinese Community of kubernetes
Catalog
Why use Kubernetes on Windows?
Prerequisite
WSL2: Combined with Ubuntu
[Optional ...
Posted by shantred on Thu, 11 Jun 2020 03:17:10 +0200
Multiple Cluster Deployment Management with Istio: Single Control Plane Gateway Connection Topology
In a single control plane topology, multiple Kubernetes clusters work together to use a single Istio control plane running on one of the clusters.The control plane's ilot manages services on local and remote clusters and configures the Envoy Sidecar proxy for all clusters.
Cluster-aware service routing
Cluster-aware service routing capabilit ...
Posted by robert.access on Sat, 06 Jun 2020 05:49:32 +0200
How to use Istio for multi-cluster deployment management: Single Control Plane Gateway Connection Topology
Author|Wang Xining Senior Technical Expert of Alibaba
Guidance: This paper is abstracted from the book "Istio Service Grid Technology Analysis and Practice" written by Wang Xining, a senior technical expert in Ali Cloud. It describes how to use Istio to manage multi-cluster deployment to illustrate the support capability of service ...
Posted by ainoy31 on Thu, 07 May 2020 19:48:08 +0200
k8s deployment and installation dashboard based on Centos8
Install and deploy dashboard
1. Check pod operation
kubectl get pods -A -o wide
Download the recommended.yaml filewget https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0/aio/deploy/recommended.yamlModify the recommended.yaml filevim recommended.yamlkind: ServiceapiVersion: v1metadata: labels: k8s-app: kubernetes-dashboard name ...
Posted by anto on Mon, 04 May 2020 18:02:22 +0200
k8s cluster deployment 3: master node component deployment
All of the following are executed on the master
Get master node binary package
Download binary packages and deploy components
The binary package of the master node can be obtained from this website: kubernetes github
wget https://dl.k8s.io/v1.9.0/kubernetes-server-linux-amd64.tar.gz
Extract the Kube apiserver Kube Cont ...
Posted by TechXpert on Sun, 05 Apr 2020 01:34:59 +0200
Addition and deletion of k8s node nodes and setting of cluster roles
1. Add node node
[root@k8s-4 ~]# kubeadm join 192.168.191.30:6443 --token 6zs63l.4qmypshahrd3rt3x \
--discovery-token-ca-cert-hash sha256:851c0bf733fe1e9bff54af08b84e93635d5b9c6e047a68c694c613391e024185
W0323 15:58:36.010687 1427 join.go:346] [preflight] WARNING: JoinControlPane.controlPlane settings will be ignored when control-plane ...
Posted by shezz on Mon, 23 Mar 2020 15:35:01 +0100