Skip to content

Instantly share code, notes, and snippets.

View akshayithape-devops's full-sized avatar
🚀

Akshay Ithape akshayithape-devops

🚀
View GitHub Profile
@akshayithape-devops
akshayithape-devops / EKS-monitoring-using-prometheus-and-grafana.md
Last active May 11, 2024 09:40
𝗞8𝘀 𝗖𝗹𝘂𝘀𝘁𝗲𝗿(EKS) 𝗠𝗼𝗻𝗶𝘁𝗼𝗿𝗶𝗻𝗴 𝘂𝘀𝗶𝗻𝗴 𝗣𝗿𝗼𝗺𝗲𝘁𝗵𝗲𝘂𝘀 𝗮𝗻𝗱 𝗚𝗿𝗮𝗳𝗮𝗻𝗮

𝗞8𝘀 𝗖𝗹𝘂𝘀𝘁𝗲𝗿(EKS) 𝗠𝗼𝗻𝗶𝘁𝗼𝗿𝗶𝗻𝗴 𝘂𝘀𝗶𝗻𝗴 𝗣𝗿𝗼𝗺𝗲𝘁𝗵𝗲𝘂𝘀 𝗮𝗻𝗱 𝗚𝗿𝗮𝗳𝗮𝗻𝗮

Prerequisites

  1. An AWS Account
  2. IAM credentials and programmatic access.
  3. AWS credentials that are set up locally with aws configure.
  4. Ubuntu 22.04 LTS

Steps

# Author: Akshay Ithape
# This Kubernetes manifest defines a ClusterIP service.
apiVersion: v1
kind: Service
metadata:
name: my-clusterip-service # Name of the service
spec:
type: ClusterIP # Optional field (default)
selector:
app: my-app # Selects pods with the label 'app: my-app'
@akshayithape-devops
akshayithape-devops / Create-first-docker-container.md
Last active May 13, 2023 04:43
Create First Docker Container for Apache Web Server
@akshayithape-devops
akshayithape-devops / docker-setup-windows10.md
Created January 11, 2023 12:57
Installation of Docker Engine on Windows 10

Installation of Docker Engine on Windows 10

@akshayithape-devops
akshayithape-devops / helloworld.java
Created December 12, 2022 03:49
Simple Hello World Java Program For Demo
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
@akshayithape-devops
akshayithape-devops / docker-setup-for-lab.md
Last active December 28, 2022 04:45
Docker Session - Create Environment For Labs
@akshayithape-devops
akshayithape-devops / imperative-commands.md
Created November 2, 2021 02:18
Kubernetes Imperative Commands

Kubernetes Imperative Commands

POD Object

Create POD

kubectl run pod-name --image=nginx