Posts

Showing posts from April, 2019

Google Kubernetes Engine and basic concept

Image
Kubernetes Engine is a managed, production-ready environment for deploying containerized applications. It brings the latest innovations of Google in developer productivity, resource efficiency, automated operations, and open source flexibility to accelerate your time to market. Kubernetes logo Kubernetes Engine enables rapid application development and iteration by making it easy to deploy, update, and manage your applications and services. Operate Seamlessly with High Availability Control the environment from the built-in Kubernetes Engine dashboard in Google Cloud console. Use routine health checks to detect and replace hung, or crashed, applications inside your deployments.Container replication strategies, monitoring, and automated repairs help ensure that your services are highly available and offer a seamless experience to your users. Scale Effortlessly to Meet Demand Go from a single machine to thousands: Kubernetes Engine auto scaling allows you to hand...

Oracle Cloud Infrastructure Key

Data service and API service with Google Kubernets Engine on Google Cloud Platform

Google Kubernetes Engine (GKE) is a management and orchestration system for Docker container  and container clusters that run within Google's public cloud services. Google Kubernetes Engine is based on Kubernetes, Google's open source container management system. GKE perfoms duties like,  Debug container clusters Update and upgrade container clusters

Container native DevOps platform with Docker

What is the Docker? Why we need Docker? Container management system... Alternatives for container management system Containers vs virtual machines Install Docker on Ubuntu... Start works with Docker...

Improve experince with Kubernetes ...

Image
Now days, trending concepts of the DevOps are containerization, microservices. Let's walk with them in this blog article. Containers Containers are an abstraction at the app layer that packages code and dependencies together. Multiple containers can run on the same machine and share the OS kernel with other containers, each running as isolated processes in user space. Containers take up less space than VMs (container images are typically tens of MBs in size), can handle more applications and require fewer VMs and Operating systems. Container management system... A container is a standard unit of software that packages up code and all its dependencies so the application runs quickly and reliably from one computing environment to another. A  container image is a lightweight, standalone, executable package of software that includes everything needed to run an application: code, runtime, system tools, system libraries and settings. Virtual machine VS containers Let...