Posts

Showing posts with the label Kubernetes

Learning 2: MiniKube Kubernetes Cluster WebLogic Application deployment

Image
Hey Middleware Expert, I am going to discuss the Kubernetes cluster deployment. This is most important for the topic in Kubernetes in pod management with replicas and deployment for application Lifecycle management. MiniKube having built-in Kubernetes Dashboard. This post is a continuation of  our  previous post " Learning  1. Minikube  Kubernetes Cluster  Running in the Oracle VirtualBox" . Create a new deployment using a Kubernetes dashboard To create the new deployment in the minikube Kubernetes dashboard click on the 'deployments' under the workload. On the top right select +CREATE  and there are : CREATE FROM TEXT INPUT CREATE FROM FILE CREATE AN APP Select the third option Minikube dash board deployment of WebLogic  For the App Name, we’ll call this deployment 'wls-app'. Container image for WebLogic 12c we will take  ismaleiva90/weblogic12:latest. Here I've used docker pull for this image once it is available in the local docker registry the...

Learning 1. Minikube Kubernetes Cluster Running in the Oracle VirtualBox

Image
My learning Kubernetes Cluster is an essential skill for SRE DevOps Engineers on any Cloud platforms. My learning capability keep growing with this daily dose !! :) I like the statement given in one of the author -Kubernetes is like captain of ship where multiple container clusters carried in the huge ship. This is a first step that will help you to enter into world of Kubernetes cluster technologies. Kubernetes is also known as k8s, this is quite young technology in the DevOps stack. Here we have two options to work-out on Learning Kubernetes: Kubernetes installing in master-slave in multiple nodes Minikube running a locally single node The first option will be used in real-time production environments, and the other is used for learning purposes. Here I've selected the second option for running WebLogic on Minikube. Benefits of Kubernetes cluster There are many benefits but in brief for WebLogic   Kubernetes is the core component in Cloud Native Engineering pla...