XenonStack

A Stack Innovator

Post Top Ad

Friday 8 September 2017



Kubernetes is an open-source container orchestration engine and also an abstraction layer for managing full stack operations of hosts and containers. From deployment, Scaling, Load Balancing and to rolling updates of containerized applications across multiple hosts within a cluster. Kubernetes make sure that your applications are in the desired state.
Kubernetes 1.7 released on 29th June 2017 with some new features and fulfil the most demanding enterprise environments. There are now new features related to security, stateful applications and extensibility. With Kubernetes 1.7 we can now store secrets in namespaces in much better way, We ‘ll discuss that below.


Table of Content - 
  • Introduction to Twelve-Factor App
  • Kubernetes Architecture
  • Kubernetes Components
  • Kubernetes Security
  • Monitoring of Kubernetes
  • Open Source Tools For Kubernetes
  • Applications of Kubernetes
  • What's New in Kubernetes 1.7


Introduction To The Twelve-Factor App For Microservices

In the modern era, software is commonly delivered as a service called web apps, or software as a service. The twelve-factor app is a methodology for building software as a service app that -
  • Can minimize time and cost for new developers joining the project.
  • Offering maximum portability between execution environments.
  • Are suitable for deployment on modern cloud platforms.
  • Obviating the need for servers and systems administration.
  • Minimize divergence between development and production.
  • Enabling continuous deployment for maximum agility.
  • And can scale up without significant changes to tooling and architecture.
The twelve-factor methodology can be applied to apps written in any programming language, and which use any combination of backing services (database, queue, memory cache, etc).


The Twelve Factors

1. Codebase
  • A twelve factor app should have only one codebase per app, but there will be many deploys of the app. A deploy is a running instance of an app.
  • A twelve-factor app is always tracked in a version control system. A copy of the revision tracking database is known as a code repository.
2. Dependencies
  • A twelve factor app never relies on implicit existence of system wide packages. It declares all dependencies, completely and exactly.
3. Config
  • A twelve factor app should store config in the environment. An app’s config is everything that is likely to vary between deploys (staging, production, developer environments etc).
4. Backing Services
  • A backing service is any service the app consumes over the network as part of its normal operation. The code for a twelve-factor app makes no distinction between local and third party services.
  • A deploy of the twelve-factor app should be able to swap out a local MySQL database with one managed by a third party without any changes to the app’s code.
5. Build, Release, Run
  • The twelve-factor app uses strict separation between the build, release, and run stages. Transformation of code repo into an executable bundle is known as a build. Combination of build stage and current config makes release stage and the run stage runs the app in the execution environment.
6. Processes
  • The app is executed in the execution environment as one or more processes. Twelve-factor processes are stateless and share nothing. Any data that needs to persist must be stored in a stateful backing service typically a database.
7. Port Binding
  • The twelve-factor app is completely self-contained and does not rely on runtime injection of a webserver into the execution environment to create a web-facing service. The web app exports HTTP as a service by binding to a port, and listening to requests coming in on that port.
8. Concurrency
  • Processes in the twelve-factor app will be scale out via a process model. Using this model, the developer can architect their app to handle diverse workloads by assigning each type of work to a process type.
9. Disposability
  • The twelve-factor app’s processes are disposable, meaning they can be started or stopped at a moment’s notice. This facilitates fast elastic scaling, rapid deployment of code or config changes, and robustness of production deploys.
10. Development / Production Parity
  • We have to keep development, staging and production as similar as possible. There should be less time gap, personnel gap and tool gap in development and production. It will help in continuous deployment.
11. Logs
  • Treat logs as event streams. A twelve-factor app never concerns itself with routing or storage of its output stream. It should not attempt to write to or manage logfiles. Instead, each running process writes its event stream.
12. Admin Processes
  • Run admin or management tasks as one off processes. Admin tasks are such as running one time scripts, running database migrations, running a console to run arbitrary code.
You May also Love To Read Testing Strategies in Microservices Architecture


Kubernetes Architecture 

Kubernetes Cluster operates in master and worker architecture. In which Kubernetes Master get all management tasks and dispatch to appropriate kubernetes worker node based on given constraints.
  • Master Node
  • Worker Node


Kubernetes Components

Below I have created two sections so that you can understand better what are the components of the kubernetes architecture and where we exactly using them.


Master Node


Kubernetes Master Node Architecture


Kubernetes Master Node Architecture

Kubernetes Architecture
Kubernetes Architecture


Kube API Server

Kubernetes API server is the centre of each and every point of contact to kubernetes cluster. From authentication, authorization, and other operations to kubernetes cluster. API Server store all information in the etcd database which is a distributed data store.
Kube API Server


Etcd

etcd is a database that stores data in the form of key-values. It also supports Distributed Architecture and High availability with a strong consistency model. etcd is developed by CoreOS and written in GoLang. Kubernetes components stores all kind of information in etcd like metrics, configurations and other metadata about pods, service, and deployment of the kubernetes cluster.
ETCD Structure


Kube Controller Manager

The Kube Controller Manager is a component of Kubernetes Cluster which manages replication and scaling of pods. It always tries to make kubernetes system in the desired state by using kubernetes API server.
There are other controllers also in kubernetes system like
  • Endpoints controller
  • Namespace controller
  • Service accounts controller
  • DaemonSet Controller
  • Job Controller


Kube Scheduler

The Kube Scheduler is another main component of Kubernetes architecture. The Kube Scheduler check availability, performance, and capacity of kubernetes worker nodes and make plans for creating/destroying of new pods within the cluster so that cluster remains stable from all aspects like performance, capacity, and availability for new pods.
It analyses cluster and reports back to API Server to store all metrics related to cluster resource utilisation, availability, and performance.
It also schedules pods to specified nodes according to submitted manifest for the pod.


Worker Node

Kubernetes Worker Node Architecture


Kubelet

The Kubernetes kubelet is a worker node component of kubernetes architecture responsible for node level pod management.
API server put HTTP requests on kubelet API to executes pods definition from the manifest file on worker nodes and also make sure containers are running and healthy. Kubelet talks directly with container runtimes like docker or rkt.


Kube Proxy

The Kube Proxy is networking component of the kubernetes architecture. It runs on each and every node of the kubernetes cluster.
  • It handles DNS entry for service and pods.
  • It provides the hostname, IP address to pods.
  • It also forwards traffic from Cluster/Service IP address to specified set of pods.
  • Alter IPtables on all nodes so that different pods can talk to each other or outside world.


Docker

Docker is an open source container runtime developed by docker. To Build, Run, and Share containerized applications. Docker is focused on running a single application in one container and container as an atomic unit of the building block.
  • Lightweight
  • Open-Source
  • Most Popular
Docker RunTime Engine


RKT

Rocket is another container runtime for containerized application. Rocket is developed by CoreOS and have more focus towards security and follow open standards for building Rocket runtime.
  • Open-Source
  • Pod-native approach
  • Pluggable execution environment


Supervisor

It is a lightweight process management system that runs kubelet and container engine in running state.


Fluentd

Fluentd is an open source data collector for kubernetes cluster logs.


Terminology

  • Nodes

Kubernetes Nodes are the worker nodes in the kubernetes cluster. Kubernetes worker node can be a virtual machine or bare metal server.

Node has all the required services to run any kind of pods. Node is also managed by the master node of the kubernetes cluster.

Following are the few services of Nodes
1. Docker
2. Kubelet
3. Kube-Proxy
4. Fluentd
  • Containers

A container is a standalone, executable package of a piece of software that includes everything like code, runtime, libraries, configuration.
1. Supports both Linux and Windows based apps
2. Independent of the underlying infrastructure.

Docker and CoreOS are the main leaders in containers race.
  • Pods

Pods are the smallest unit of kubernetes architecture. It can have more than 1 containers in a single pod. A pod is modelled as a group of Docker containers with shared namespaces and shared volumes.

Example:- pod.yml

apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: nginx-deployment
spec:
replicas: 3
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.7.9
ports:
- containerPort: 80
  • Deployment

A Deployment is JSON or YAML file in which we declare Pods and Replica Set definitions. We just need to describe the desired state in a Deployment object, and the Deployment controller will change the actual state to the desired state at a controlled rate for you.
We can
  • Create new resources
  • Update existing resources
Example:- deployment.yml

align="justify">apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: nginx-deployment
spec:
replicas: 3
template:
metadata:
labels:
app: nginx
spec:
containers:
-  name: nginx
image: nginx:1.7.9
ports:
- containerPort: 80
  • Service

A Kubernetes Service definition is also defined in YAML or JSON format. It creates a logical set of pods and creates policies for each set of pods that what type of ports and what type of IP address will be assigned. The Service identifies set of target Pods by using Label Selector.

align="justify">Example: - service.yml
kind: Service
apiVersion: v1
metadata:
name: my-service
spec:
selector:
app: MyApp
ports:
- protocol: TCP
port: 80
targetPort: 9376

Continue Reading The Full Article at - XenonStack.com/Blog

No comments:

Post a Comment