kubernetes Series Tutorial kubernetes Resource Management and Quality of Service

Write before In the last article kubernetes Series Tutorials (5) Deep understanding of core concepts pod yaml's first introduction to kubernetes is an important concept of pod, followed by introduction kubernetes series tutorials resource management of pod and Quality of service of pod. 1. Pod Resource Management 1.1 resource definition Contai ...

Posted by ddragas on Sat, 28 Dec 2019 11:19:33 -0800

Deploy Docker swarm cluster

1, Introduction to Docker swarm Docker swarm and docker-compose In the same way, it is the official docker container choreographer. But the difference is that Docker Compose is a tool to create multiple containers on a single server or host, while Docker Swarm can create container cluster services on multiple servers or hosts. Obviously, Docke ...

Posted by FusionComputers on Fri, 27 Dec 2019 05:39:47 -0800

k8s Install sonarqube

1. Overview The SonarQube platform consists of four components: A SonarQube Server starts three main processes: Web server for developers and administrators to browse high-quality snapshots and configure SonarQube instances Search Server based on Elasticsearch searches backwards from the UI Compute Engine server, responsible for processing c ...

Posted by ljCharlie on Thu, 26 Dec 2019 16:21:17 -0800

One click installation of kubeflow based on Alibaba cloud image in China

Introduction: there are wall problems in google's products in China. As a cloud native machine learning suite, kubeflow helps the team greatly. For the team without turning over the wall, building kubeflow based on the domestic image can help you solve many problems. Here, we provide you a set of kubeflow 0.6 installation scheme based on the d ...

Posted by peddel on Thu, 26 Dec 2019 01:00:32 -0800

Installing the Kubernetes 1.16 cluster using kubeadm

Kubeadm is an official tool provided by Kubernetes to quickly install the Kubernetes cluster. With each release of Kubernetes updated synchronously, Kubeadm will adjust some of the cluster configuration practices. By experimenting with kubeadm, you can learn some new Kubernetes official best practices on cluster configuration. operating system ...

Posted by macinjosh on Tue, 24 Dec 2019 12:00:41 -0800

Preliminary Practice of Using helm-v3, a Native Microservice Management Tool for k8s

Helm-v3 Application Package Manager 3.1 Why do I need Helm?The application objects on K8S consist of specific resource descriptions, including deployment, service, and so on.Save each file or write it together to a configuration file.Then deploy kubectl apply-f. Why use helm?In k8s, when we deploy applications, we usually use yaml files to man ...

Posted by jeev on Tue, 17 Dec 2019 12:26:57 -0800

volumes persistent storage of k8s

Data persistence of k8s kubernetes storage volume:We know that by default, the container's data is non persistent, and the data is lost after the container is destroyed, so docker provides a volume mechanism to store the data persistently. Similarly, k8s provides a more powerful volume mechanism and rich plug-ins to solve the problem of contai ...

Posted by bobvaz on Sat, 14 Dec 2019 08:44:59 -0800

docker practice ks8 installation and deployment

Deployment architecture: I. installing docker Only docker18.06 is supported at this time 1.1. Add source: # yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 1.2. View package: # yum list docker-ce.x86_64 --showduplicates | sort -r 1.3. Install docker # yum -y install docker-ce-18.06.0.ce-3.el7 Th ...

Posted by jds580s on Mon, 09 Dec 2019 07:48:49 -0800

How to smoothly and elegantly upgrade cert manager in Rancher 2.x?

Author: Nassos Michas European Dynamics SA, CTO If you are using Helm Chart provided by Rancher to install cert manager in the Kubernetes cluster managed by Rancher, you may have received a reminder from Let's Encrypt recently: Check the log of cert manager in the cluster, and you can see that Let's Encrypt refused to update the certificate ...

Posted by mewhocorrupts on Fri, 06 Dec 2019 21:59:40 -0800

k8s advanced learning 1:kubectl config command

1. Strengthen the understanding of kubectl config command in combination with kubectl deployment kubectl config command generates cluster information, cluster users and user permissions and writes these contents to the configuration file read by kubectl The kubectl config command executed when deploying kubectl is as follows [root@k8s-master a ...

Posted by stevel on Wed, 04 Dec 2019 09:09:02 -0800