mastering kubernetes

Alibabacloud.com offers a wide variety of articles about mastering kubernetes, easily find your mastering kubernetes information here online.

Kubernetes 1.3 Installation and cluster environment deployment

Brief introduction:Docker: An open-source application container engine that can create a lightweight, portable, self-sufficient container for your application.Kubernetes: The Docker container Cluster Management system, which is open source by Google, provides the functions of resource scheduling, deployment operation, service discovery, capacity scaling and so on for containerized applications.ETCD: A highly available key-value storage system developed and maintained by CoreOS, primarily for sha

Using listening cloud server and listening cloud network to measure the performance of kubernetes and Mesos under high concurrency

Article from: Listen to the Cloud blogAs our business continues to grow, our number of applications has exploded. With the growth of application explosion, the difficulty of management is increased. How to quickly complete the expansion while the business explosion is growing is a big challenge. The advent of Docker happened to solve our problem. With Docker, we can quickly complete the expansion and contraction, and the configuration is uniform and error-prone.In the Docker cluster management s

Kubernetes load Balancing problem (Nginx Ingress)

Kubernetes about the service exposure is mainly through the Nodeport way, through the binding minion host of a port, then the pod request forwarding and load balancing, but this way the defect is The service may have many, if each is bound to a node host port, the host needs to open the perimeter of a heap of ports to make services calls, management confusion Cannot apply firewall rules required by many companies The ideal way is thr

Running an ASP. Kubernetes (k8s) cluster in Azure Container service Create a cross-platform application

footprint.3. Log in hub.docker.com using the Docker login command4. Push the local image to hub.docker.com using a command such as Docker push Chenxizhang/mvcapp, which may take a certain amount of time, depending on your network configurationIf all goes well, you can see the following resultsNote: If you are creating your own Docker warehouse, you can learn about the Azure Container Registry service. (https://azure.microsoft.com/zh-cn/services/container-registry/), do not unfold here.Create

Rancher deployment and expansion of Kubernetes cluster Basic chapter II

The next one is to deploy and expand the Kubernetes cluster based on rancher7. Configuring Redis with ConfigmapHttps://github.com/kubernetes/kubernetes.github.io/blob/master/docs/user-guide/configmap/redis/redis-configRedis-configMaxMemory 2MB Maxmemory-policy Allkeys-lru# kubectl Create Configmap example-redis-config--from-file=./redis-config# Kubectl Get configmap example-redis-config-o yamlapiversion:v1d

Native accelerated kubernetes installation in China area

OverviewKubernetes is a powerful container orchestration tool that enables users to reliably deploy and run containerized applications on a scalable system. Within the container area, k8s has undoubtedly become a community standard for container orchestration and management, and even Docker has announced support for K8s. The fighting in the field of container orchestration has been turned around, and the dust settles, and k8s has been unanimously endorsed by the players including Google, Huawei,

Native rancher accelerates kubernetes installation in China

Teaches you how to accelerate the deployment of k8s in China and implement custom settings that have a k8s image of the warehouse with its namespace.OverviewKubernetes is a powerful container orchestration tool that enables users to reliably deploy and run containerized applications on a scalable system. Within the container area, k8s has undoubtedly become a community standard for container orchestration and management, and even Docker has announced support for K8s. The fighting in the field of

Kubernetes Dashboard Backend Source code analysis

certification aspects of processing, certification is actually entrusted to K8s Apiserver responsible, dashboard just based on user login information generated Authinfo object, encrypted as token carried in the browser, that is Jwe protocol, Jwe Sub-package is the implementation of the JWE protocol, where Keyholder (Rsakeyholder concrete Class) manages the key pair used by Jwe and stores the secret key in Kubernetes-dashboard-key-holder Secrets objec

Kubernetes cluster Installation Deployment

--dport 2380-m State--state new-j ACCEPTTurn off selinux#setenforce 0[Email protected] ~]# sed-i '/^selinux=/c selinux=disabled '/etc/selinux/config2 , installation ETCDgit address:https://github.com/coreos/etcd/releases/ETCD Chinese Document:http://etcd.doczh.cn/documentation/Download the installation package:https://github.com/coreos/etcd/releases/download/v3.3.8/etcd-v3.3.8-linux-amd64.tar.gz#tar-ZXVF etcd-v3.3.8-linux-amd64.tar.gz#ln-S Etcd-v3.3.8-linux-amd64 etcd#cd ETCD#cp etcd*/bin/#etcd

Kubernetes Dashboard and DNS deployment

The previous blog post describes the deployment of the K8s cluster, which focuses on deploying Kube-dns and dashboard.Environment descriptionNode-1 (Master): 10.0.0.1Node-2:10.0.0.2Node-3:10.0.0.3The cluster uses a binary installation, and the Flannel network plug-in is deployed.Kube-dns When doing the following, you must have already deployed the k8s cluster, if you do not have such a cluster, please refer to my previous blog post. 1, find the corresponding Yaml file on the offici

Kubernetes Getting Started Guide (i)

First of all, we need to understand the function of kubernetes, in short, it provides a container orchestration technology, to provide users with a container-based service rapid deployment, upgrade, rollback, access control, elastic scaling and other scheduling functions, so that users in the development, testing, production environment can achieve agile development, The purpose of fast and reliable delivery.Second, you need to understand the kubernet

A study of Kubernetes service

Kubernetes is Google open source container choreographer, very suitable for the current hot micro-service architecture, in the Container choreography field, is gradually building a dominant position. This article mainly aims at the Kubernetes service to do some analysis, first briefly introduces the basic concept. Basic concepts The Pod:kubernetes minimum Dispatch unit is a set of containers that can be und

Kubernetes's pod detailed

mountpath:/logs volumes: -name:app-logs Emptudir : {} View Log kubectl logs 5. Configuration management of Pod The Kubernetes v1.2 version provides a unified cluster configuration management solution –configmap. 5.1. Configmap: Configuration management for container applications Usage Scenario: Live as an environment variable within a container. Set startup parameters for the container startup command (set to environment variable). Mou

"Istio Official document" Google Kubernetes engine Quick Start

Use Google Cloud deployment Manager to install and run Istio's quick start instructions in Google kubernetes Engine(Gke). This quick start is used to create a new Gke cluster, install Istio, and then deploy the BookInfo sample application. It is performed automatically using Deployment Manager and is described in detail in the istio on kubernetes setup Guide . Note: The default installation creates a Gke Al

Kubernetes Service Rolling Update

[TOC]Introduction to Rolling UpdatesWhen a service in a kubernetes cluster needs to be upgraded, it is a traditional practice to go offline with the service that is being updated, to update the version and configuration after the business is stopped, and then to restart and provide the service. If the business cluster is large, this work becomes a challenge, and all stops first, and the gradual escalation will result in the service being unavailable f

Add/Remove node to Kubernetes cluster

Add/Remove node to Kubernetes cluster Minion node pre-operation preparation#关闭防火墙systemctl stop firewalld#禁止防火墙开机启动systemctl disable firewalld#检查selinuxgetenforceDisabled#端口检查 Add node to the Kubernetes clusterWhen the KUBEADM Init initialization operation is complete, the system finally gives the command to join the node to the cluster:kubeadm join 10.0.0.39:6443 --token 4g0p8w.w5p29ukwvitim2ti --dis

Pod Scheduling of Kubernetes

"Editor's words" The Kubernetes Scheduler dispatches the pod to the work node according to a specific algorithm and strategy. By default, the Kubernetes scheduler can meet most of the requirements, such as scheduling pods to run on resource-rich nodes, or scheduling pod dispersal to different nodes to make cluster nodes resource balanced. However, in some special scenarios, the default scheduling algorithm

Kubernetes Scheduler Module ANALYSIS-Continued

1. Foreword In the last article "Kubernetes Scheduler Module Analysis", the Scheduler scheduling process and the main algorithm are analyzed. From the overall grasp of the scheduler scheduling mechanism, today want to continue to analyze the more detailed content. 2. Summary Today, we mainly analyze the caching mechanism of scheduler, Extender extension mechanism and tainttoleration mechanism. These three aspects, although not so macroscopic, but for

Detailed k8s a complete monitoring scheme (HEAPSTER+GRAFANA+INFLUXDB)-kubernetes

: -Mountpath: /etc/ssl/certs name:ca-certificates readonly:true -Mountpath:/varName:Grafana-Storage env: -Name:Influxdb_host value:Monitoring-Influxdb-Name:Gf_server_http_port value: " the"# The following env variables is required to make Grafana accessible via # the Kubernetes API-ServerProxy. on Production clusters,We recommend # Removing these env variables,Setup Auth forGrafana,and expose the Grafana # service using a loadbalancer

"Selfless sharing: from getting started to mastering ASP. NET MVC" starting with 0, building a framework, doing projects (7.1) module management, verifying permissions, displaying modules list

each part, each stage of the demo to download to everyone, in fact, if you finish, and eliminate my Code is not good place, you do not need these demo, is it ~Index"Selfless sharing: from getting started to mastering ASP. NET MVC" starting with 0, framing, doing projects (1) building an MVC environment registration area"Selfless sharing: from getting started to mastering ASP. NET MVC" starting with 0, buil

Total Pages: 15 1 .... 11 12 13 14 15 Go to: Go

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.