virtualization

Delete a Kubernetes Namespace

Kubernetes namespace is a logical grouping space to make saperate environment, In order to deploy the resource. You will learn how to delete a Kubernetes namespace in this article. It will provide an additional method for troubleshooting issues with namespaces stuck in the terminating status in addition to the standard procedure for removing namespaces. Step […]

Create Kubernetes Namespace

Kubernetes namespace is a logical grouping space to make saperate environment, In order to deploy the resource. In this post, We will learn to create a Kubernetes namespace. Step 1: Create Kubernetes Namespace Using kubectl The kubectl CLI tool is the most straightforward method for creating a Kubernetes namespace. Use the syntax below to create […]

Write Apache Tomcat Dockerfile for Ubuntu 20.04 LTS

Apache Tomcat is a open source Java servlet container and in this post we will write the Apache Tomcat Docker file.  FROM ubuntu:latest RUN apt-get update -y && apt-get install default-jdk -y RUN groupadd tomcat RUN useradd -s /bin/false -g tomcat -d /opt/tomcat tomcat RUN cd /tmp && apt-get install curl -y RUN curl -O […]

How To Setup a Docker Swarm Cluster on Ubuntu 16.04/18.04/20.04 LTS

Docker Swarm is a device that permits you to send a bunch of Docker Hosts. It’s a local bunching apparatus gave by Docker which gives high-accessibility and superior for your application by conveying it to all hubs inside the multitude group. To begin, you will require: 1. Information on Docker and Ubuntu variant 16.04 2. An […]

How to Install VirtualBox on Ubuntu 16.04 LTS

Oracle VirtualBox is a free and open source hosted hypervisor virtualization, VirtualBox developed by Oracle Corporation, Written in: C, C++, x86 assembly, With this post we will install VirtualBox on ubuntu linux. Step 1: Adding Repo To install VirtualBox on ubutnu 16.04, You need to add and update the ubuntu repo by following commands. Step […]

How to install Docker CE on ubuntu 16.04/18.04/20.04 LTS

Docker is an open-source lightweight virtualization tool. It is containerizing platform in which user can run and deploy application and its dependencies and form containers to run over any linux infrastructure. Developed by: Docker, Inc.Cross Platform  Linux OS, Mac SO, Window OSInitial release: March 20, 2013 Docker hardware requirements * Linux kernel version 3.10 or […]

Scroll to top