Category: Server Administration

How To Install PortWorx On A Kubernetes Cluster

Introduction Portworx is a software-defined persistent storage solution designed and purpose-built for applications deployed as containers, via container orchestrators such as Kubernetes, Nomad, Marathon, …

Linux Commands Cheat Sheet

System Administration System Information uname -a uname -r IP Address Management ifconfig eth0 #show specific interface On Centos ifconfig ens3 #show specific interface On…

Git Commands Cheat Sheet

Git Basics Creating a new repository mkdir project cd project git init git remote add origin git@github.com:yourlogin/your-repo.git git add . git commit -am “new…

How To Install Jenkins On A Kubernetes Cluster

Introduction Jenkins is a CI tool ( continuous integration) that automates a large portion of the software development process. Several development teams working on multiple projects…

Kubernetes Automated Bash Install Script

Following up on the tutorial about installing Kubernetes and Flannel on Ubuntu, might be useful for some people to automatically install K8s via a…

How To Install Kubernetes & Flannel On Ubuntu 18.04

Introduction Kubernetes (K8s) is open-source software for service discovery and load balancing, automatic bin packing, storage orchestration, self-healing, and horizontal scaling on web applications.…