k8s resource list defines haproxy load balancing

k8s resource list defines haproxy load balancing Core resources of k8s workload type resource PodReplicaSetDeploymentStatefulSetDaemonSetJobCronjob Service discovery and load balancing resources ServiceIngress Configure storage related resources Storage Volume: cloud storage Amazon Elastic Block Store SANGluster (distributed storage) ...

Added by fatywombat on Sat, 25 Dec 2021 08:08:01 +0200

Basic Introduction to kubernetes and Common Commands of kubectl

Basic Introduction to kubernetes and Common Commands of kubectl pod classification of k8s There are two categories of pod s: Autonomous podController managed pod Autonomous pods are managed by k8s manager, while static pod s are created and managed by kubelet Autonomous pod Autonomous pods always run in the foreground and are managed ...

Added by Drannon on Sat, 25 Dec 2021 00:42:34 +0200

k8s restart strategy, health check, environment variable, initialization container

Basic concepts of Pod Pod is the smallest unit created and managed by Kubernetes. A pod consists of one container or multiple containers, which share storage and network. Pod features A Pod can be understood as an application instance that provides servicesThe container in the Pod is always deployed on one NodeThe containers in the Pod s ...

Added by scarface222 on Fri, 24 Dec 2021 06:42:44 +0200

Resource scheduling of k8s

Resource scheduling of K8s Overall architecture of K8s Kubernetes belongs to the master-slave distributed architecture, which is mainly composed of Master Node and Worker Node, as well as the client command line tool kubectl and other additional items. Master Node: as a control node, it performs scheduling management on the cluster; Th ...

Added by john0117 on Thu, 23 Dec 2021 22:42:57 +0200

Galaxy Kirin V10 under Feiteng arm server, install docker using yum

General idea: First, check whether the existing software source can install docker; See how to install Centos; Centos needs to be installed according to aarch64; Use domestic image to facilitate installation; 1. View version There are two ways to determine the specific centos version corresponding to the Kirin system. At present, ther ...

Added by Paulus Magnus on Thu, 23 Dec 2021 11:38:59 +0200

vagrant creates a virtual machine for vmbox and installs mysql and redis for docker

1, Install vmbox and vagrant 1. Download address Vagrant: https://releases.hashicorp.com/vagrant/2.2.5/vagrant_2.2.5_x86_64.msi ==VirtualBox: == https://download.virtualbox.org/virtualbox/6.0.10/VirtualBox-6.0.10-132072-Win.exe Remember to turn on cpu virtualization 2. vagrant initializes the virtual machine CUHK mirror station, such as: ...

Added by crashmaster on Wed, 22 Dec 2021 22:39:24 +0200

Install docker on Milky Way Kirin Advanced Server Operating System V10

Galaxy Kirin Advanced Server Operating System V10 is for enterprise-level key business, adapting to the requirements of host system reliability, security, performance, scalability and real-time in the era of virtualization, cloud computing, big data and industrial Internet. It provides internal security, cloud native support, in-depth optimizat ...

Added by chrisdburns on Wed, 22 Dec 2021 11:46:48 +0200

Dockerfile -- build centos+tomcat image, and the tomcat in the container starts automatically

After learning the Dockerfile command, you need to write a relatively complete Dockerfile to verify the learning content. preface First of all, we need to make it clear what to do, build an image through the Dockerfile file, and ensure that the built-in tomcat is self started when starting the image generation container. Then let's s ...

Added by yogibear333 on Wed, 22 Dec 2021 06:32:11 +0200

How to deploy a project with Docker Compose?

preface Previously, we deployed springboot, redis and mysql projects with docker, but they are deployed in three different containers. We also need to know the ip addresses of redis and mysql and manually configure them into the springboot application container. I just want to test them locally quickly. This cost is too high. Is there any ...

Added by gilang4 on Tue, 21 Dec 2021 11:12:18 +0200

Docker's Learning Notes

Docker's Learning Notes 1. Overview of Docker Virtual Machine Data Model: VM Data Disadvantages: High resource usageToo many redundant stepsStart very slowly Containerized technology model: Compare Docker with virtual machine technology: Traditional virtual machines virtualize a piece of hardware, run a complete operating system, ...

Added by PAFTprod on Tue, 21 Dec 2021 09:59:47 +0200