kubernetes blog

Learn about kubernetes blog, we have the largest and most updated kubernetes blog information on alibabacloud.com

Kubernetes Study Notes

Docker enables more convenient management of single-machine container virtualization, where Docker is located between the operating system layer and the application layer; Relative traditional virtualization (Kvm,xen):Docker can be more flexible to implement some of the application layer functions, while the utilization of resources is also higher Relative application:Docker can better combine applications with more operating systems (mirroring), reducing the cost of deployment and

Dockone WeChat Share (120): The practice of private container cloud construction based on Kubernetes

This is a creation in Article, where the information may have evolved or changed. "Editor's note" This sharing will introduce ePRO to pay private container cloud from 0 to 1 of the construction road. Includes technology selection, theoretical Foundation, kubernetes-based container clouds and CI/CD in the landing process challenges and trampled pits. Construction Background and objectivesBefore the popularity of Docker technology, ensuring the quality

How do I use the kubernetes API in the go language?

Alena Prokharchyk, Chief software engineer at Rancher Labs, was invited to give a presentation at the Kubernetes + Kubecon 2017 North American Summit, hosted by CNCF in December 2017 6-8th. This article is organized by the content of the lecture.As Kubernetes is becoming more and more popular, the number of integration and monitoring services around it is growing. The key component of all such services writ

Dockone WeChat Share (106): The Vision Cloud based on Kubernetes PAAs platform construction

not perfect, not to achieve the container and application level of monitoring and alarm. The mirrored warehouse registry does not have the same user rights as the Docker hub. As Kubernetes began to use more and more companies, more teams and lines of business within the company began accepting or proactively learning about Docker, and in order to address the existence of first-generation platforms and the deployment of existing services based

Kubernetes Schema Deployment

Platform Environment: Centos 7.0First, the architecture modeSecond, Core ServicesMaster1) ETCD ServiceETCD is a highly available key-value storage system that Kubernetes uses to store the state of individual resources, enabling restful APIs. The ETCD service acts as the primary database for the Kubernetes cluster and needs to be installed and started before installing K

Openvswitch GRE implementation of Kubernetes network model

network model by Openvswitch GRE, but this approach is a bit clumsy in large-scale systems. For example, if the system has n hosts and they need to communicate between them, an n (n-1)/2 GRE tunnel is required, although it is possible to prevent the bridge loop by enabling the SPT protocol, but maintaining N (n-1)/2 tunnels is still a lot of work. So next consider how you can automate the implementation.4. References Https://github.com/GoogleCloudPlatform/

Kubernetes API Server Principles

Kubernetes API Server FeaturesThe core function of Kubernete API server is to provide an HTTP rest interface for kubernetes, deleting, changing, checking, and watch for various resource objects (such as Node,pod,service, etc.).The API server is the central hub for data interaction and communication between the various functional modules in the cluster, in addition to the following features: API Por

CoreOS Linux introduced the Kubernetes Kubelet

CoreOS Linux introduced the Kubernetes KubeletKelsey HightowerAugust 14, 2015This week we have integrated a core embedded component of kubelet--kubernetes in the Alpha development of CoreOS Linux. Kubelet is responsible for maintaining the pod (application instance) collection. The Pod collection consists of one or more containers of the local system. In the Kubernetes

"Heavyweight" perfect fusion Kubernetes,ghostcloud Enterprise Container cloud Platform Ecos first implementation of dual-container scheduling

Objectiveto report a recent blockbuster news: the latest version of Ghostcloud Enterprise container Cloud Platform Ecos (corporate Container operation System) has perfectly supported the most mainstream scheduling engine kubernetes in the container market, and officially launched today! Built-in self-research container scheduling framework Newben and open Source engine kubernetes means that the Ecos platfor

Parsing the Kubernetes architecture

I. Introduction:Kubernetes is an open source container management tool, based on the Go language implementation, lightweight and portable applications, you can put kubernetes cluster on the Linux host deployment, management and expansion of the Docker container application on multiple hosts.Two. Architecture: 1. The kubernetes consists of the following components:

Kubernetes's Kubectl common commands

name is: Rc-nginx.yamlApiVersion:v1kind:ReplicationControllermetadata: name:rc-nginx-2spec: replicas:2 Template: Metadata: Labels: app:nginx-2 Spec: containers: -name:nginx-2 Image: Xingwangc.docker.rg/nginx Ports: -containerport:80Directly using Create, you can create a Replicationcontroller (RC) based on the Rc-nginx.yaml file, and RC creates two replicas:Kubectl create-f Rc-nginx.yamlOnce created, using "Kubectl get RC" You can see that a r

Kubernetes using NFS as a shared storage

Kubernetes using NFS as a shared storageKubernetes managed containers are encapsulated, and sometimes we need to put logs from the container running locally or shared storage to prevent the container from going down, and the logs can also analyze the problem. Kubernetes's shared storage scheme is currently more prevalent in three, namely: Nfs,glusterfs and Ceph.Previously wrote an article kubernetes use Glu

Kubernetes (k8s) cluster deployment (K8S Enterprise Docker container Cluster Management) series of self-signed TLS certificates and ETCD cluster deployment (ii)

--ca-file=ca.pem--cert-file=server.pem--key-file=server-key.pem--endpoints= "https:/ /192.168.161.151:2379,https://192.168.161.152:2379,https://192.168.161.153:2379 "Cluster-healthThe discovery all started successfully. If an error occurs, please check the ETCD log yourself. If you start ETCD when the command has been stuck over there, do not worry, ETCD has been started, directly press CTRL + C. Check the status of Etcd: Ps-ef |grep ETCD12. The TLS certificate and ETCD have been successfully de

MicroServices under Golang-part 8th-Kubernetes and container engines

This is a creation in Article, where the information may have evolved or changed. [Previous post] (https://studygolang.com/articles/12799) We looked at creating a container engine cluster with [TerraForm] (https://terraform.io/). In this blog post, we look at deploying containers into clusters using the container engine and [Kubernetes] (https://kubernetes.io/). # # Ku

Docker Kubernetes Project

Kubernetes is a docker-based, open-source container cluster management system initiated and maintained by the Google team that not only supports common cloud platforms, but also supports internal data centers.Built on top of Docker, Kubernetes can build a container scheduling service that allows users to manage cloud container clusters through kubernetes clusters

The application of Kubernetes in the knowledge

From Mesos to KubernetesThe previous scheduling framework was based on Mesos self-research. The language used is Python. Run for about two years, and has been relatively stable. But as the business grows, the problems of the existing framework are gradually exposed. Scheduling speed encountered bottlenecks, affecting the deployment of large business speed. There is no good support for stateful services. There are two solutions to this problem, one for improved refactoring of ex

Kubernetes (k8s) Installation deployment process (v)--Install flannel network plug-in

corresponding.Modify its configuration file/etc/sysconfig/flanneld content as follows:# Flanneld configuration options # ETCD URL location. Point the server where Etcd runsflannel_etcd_endpoints="https://10.10.90.105:2379,https://10.10.90.106:2379,https://10.10.90.107:2379"# ETCD config key. This is the configuration key, which flannel queries# for address range Assignment#flannel_etcd_prefix="/atomic.io/network"Flannel_etcd_prefix="/kube-centos/network"# Any additional options and want to pass

Use Kubernetes step by step

Use Kubernetes step by stepWhy Docker and Kubernetes? Containers allow us to build, publish, and run distributed applications. They free applications from machine restrictions and allow us to create a complex application in a certain way. Writing applications using containers can bring development and QA closer to the production environment (if you try to do so ). By doing so, you can publish changes faster

Deploy OpenStack to atomic systems based on Docker, kubernetes

Statement:I read the notes, the translation of the article is only for paraphrase. If anything is wrong, please state.Need more understanding of the source, please read English by yourself.This blog welcome forwarding, but please keep the original author information!Blog Address: Http://blog.csdn.net/halcyonbabySina Weibo: Looking for MiraclesThe content of my study, research and summary, if there is simila

Native accelerated kubernetes installation in China area

/2021d1a8afae61ac97fba5dedff8ebb2.png "title=" 21.png "alt=" 2021d1a8afae61ac97fba5dedff8ebb2.png "/>In the top right corner of the page, click Create to create a sample service Nginx650) this.width=650; "src=" Https://s3.51cto.com/oss/201710/24/735483d677292b82eeaf931b4ccb8836.png "title=" 22.png "alt=" 735483d677292b82eeaf931b4ccb8836.png "/>Click Overview to view:650) this.width=650; "src=" Https://s3.51cto.com/oss/201710/24/e9690a3eb8e20b81aba2ba5187a764bd.png "title=" 23.png "alt=" E9690a3e

Total Pages: 15 1 .... 5 6 7 8 9 .... 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.