Skip to content

Instantly share code, notes, and snippets.

@meruguvikram
meruguvikram / az104studymaterials.md
Created January 12, 2025 08:15 — forked from robsteriam/az104studymaterials.md
AZ-104 Study Materials Compilation
@meruguvikram
meruguvikram / openshift-cheatsheet.md
Created December 19, 2023 08:14 — forked from rafaeltuelho/openshift-cheatsheet.md
My Openshift Cheatsheet

My Openshift Cheatsheet

Project Quotes, Limits and Templates

  • Cluster Quota
oc create clusterquota env-qa \
    --project-label-selector environment=qa \
    --hard pods=10,services=5
    
oc create clusterquota user-qa \
@meruguvikram
meruguvikram / k8s-install.md
Created November 18, 2023 07:57 — forked from NotHarshhaa/k8s-install.md
k8s step-by-step installation guide on Ubuntu 20.04 from scratch

Certainly! Here's a step-by-step guide to installing Kubernetes (K8s) on Ubuntu 20.04 from scratch. This guide will walk you through the process of setting up a basic Kubernetes cluster using kubeadm, kubelet, and kubectl.

Prerequisites:

  1. Ubuntu 20.04: You should have a clean installation of Ubuntu 20.04 on the machines where you plan to set up your Kubernetes cluster.

  2. Minimum 2 Nodes: For a basic Kubernetes cluster, you need at least two nodes - one for the master and one or more for worker nodes.

  3. Network Configuration: Ensure that your nodes can communicate with each other over the network. You should have a static IP address for each node.

@meruguvikram
meruguvikram / jenkins-master&slave.md
Created September 8, 2023 12:44 — forked from NotHarshhaa/jenkins-master&slave.md
Install Jenkins in ubuntu & Setup master-slave configuration

To install Jenkins on Ubuntu and set up a master-slave configuration, you can follow these steps. Jenkins is a popular open-source automation server, and this guide will help you create a Jenkins master and connect one or more Jenkins slave nodes to distribute workloads.

Step 1: Install Jenkins on the Master Node

  1. Update the package list and install Java Runtime Environment (JRE):

    sudo apt update
    sudo apt install -y openjdk-11-jre
@meruguvikram
meruguvikram / kubernetes.md
Created February 8, 2023 12:30 — forked from dmunn/kubernetes.md
Document providing an overview of Kubernetes and some basic interactions using the CLI

Kubernetes

Kubernetes is a production-grade, open-source platform that orchestrates the placement (scheduling) and execution of application containers within and across computer clusters.

Minikube

Can be considered as a developers testing ground, running Kubernetes locally within a VM.

Cluster