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 / 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
@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 / 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-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 / Create-first-docker-container.md
Last active May 13, 2023 04:43
Create First Docker Container for Apache Web Server
# 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 / 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