Kubernetes Food Guide

Introduction to Kubernetes Kubernetes is a container cluster management system that Google opened source in June 2014. It was developed in the GoLanguage and is also known as K8S.K8S is derived from a container cluster management system called Borg within Google, which has been running on a large scale for ten years.K8S is mainly used for auto ...

Posted by rwfresh on Wed, 21 Aug 2019 20:09:07 +0200

centos7 installs and deploys Kubernetes (1.15.2) cluster based on kubeadm

I. What is Kubernetes Kubernetes is an open source container cluster management system of Google (Borg). It provides application deployment, maintenance, extension mechanism and other functions. Kubernetes can easily manage container applications running across machines. It can realize automatic deployment, automatic expansion and maintenance ...

Posted by chawezul on Sun, 18 Aug 2019 15:11:48 +0200

Which apiVersion should K8S use?

Original Link: https://www.jianshu.com/p/457cf0835f88 There is no detailed explanation of apiVersion in Kubernetes'official documentation, and since the K8S version itself is iterating rapidly, some resources are still in beta at the low ...

Posted by realchamp on Fri, 16 Aug 2019 05:15:10 +0200

Kubernetes Notes - Ingress TLS

ingress tls Last lesson showed you how to install traefik and configure ingress. In this lesson, we will learn how to use ingress tls and path paths in ingress objects. TLS authentication In most scenarios now we will use https to access our servi ...

Posted by poe on Fri, 16 Aug 2019 04:44:48 +0200

yaml file details of Kubernetes - v1.15.x

yaml file of Kubernetes How K8S creates resources K8S has two ways to create resources: the kubectl command and the yaml configuration file. kubectl command line: The simplest one is OK, but the drawback is obvious. You don't know what's going on behind this command!yaml Configuration File: Provides a way for you to know more about what it is. ...

Posted by samuelxin on Thu, 15 Aug 2019 10:14:07 +0200

Build kubernetes cluster + istio service grid from scratch

(win10,virtualbox ,centos) This article refers to the website:https://www.jianshu.com/p/e43f5e848da1https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/install-kubeadm/https://www.jianshu.com/p/1aebf568b786https://blog.csdn.net/donglynn/article/details/47784393https://blog.csdn.net/MC ...

Posted by dr-dre67 on Mon, 12 Aug 2019 11:08:28 +0200

Knative Practice: Automated Deployment from Source Code to Service

Through the previous articles, I believe you are familiar with Serving, Eventing and Tekton. So in practical use, we often encounter some complex scenarios, which require collaborative processing between components. For example, can we deploy services directly into K8s after we submit the source code? This scenario is attractive to ...

Posted by squiblo on Fri, 09 Aug 2019 06:23:59 +0200

Customized development of kubernetes process

Three-step installation of kubernetes cluster Summary This paper introduces how to redevelop kubernetes, how to manage warehouses, how to manage git branches, how to compile and distribute code by CI, and how to contribute code to the community. With practical examples, it is hoped to be helpful to everyone. <!--more--> Construction of De ...

Posted by x_maras on Wed, 07 Aug 2019 09:30:46 +0200

traefik Ingress https configuration

Environmental Science . kubernetes 1.14.3 . traefik V1.7.12 .IP 192.168.30.35 .kubectl label nodes ingress ingress=yes https certificate application It is recommended to apply for free certificate with acme.sh. The specific method is not described in detail.Use self-visa openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout tls.key -out ...

Posted by MiCR0 on Wed, 31 Jul 2019 18:03:36 +0200

Unlock Cloud Native AI Skills - Develop Your Machine Learning Workflow

According to the previous article Unlocking Cloud Native AI Skills | Building Machine Learning Systems on Kubernetes After setting up a set of Kubeflow Pipelines, we tried it together and learned how to develop a machine learning workflow based on Kubeflow Pipelines with a real case. Dead work Machine learning workflow is not only a task-driv ...

Posted by kakki on Tue, 30 Jul 2019 12:41:36 +0200