Skip to content

Commit f9d5a83

Browse files
Merge pull request #118 from anveshmuppeda/dev
Improve Website
2 parents 5c81cc1 + 0e90510 commit f9d5a83

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1875
-654
lines changed

blog/2019-05-28-first-blog-post.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

blog/2019-05-29-long-blog-post.md

Lines changed: 0 additions & 44 deletions
This file was deleted.

blog/2021-08-01-mdx-blog-post.mdx

Lines changed: 0 additions & 24 deletions
This file was deleted.

blog/2021-08-26-welcome/index.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
---
22
slug: welcome
33
title: Welcome
4-
authors: [slorber, yangshun]
5-
tags: [facebook, hello, docusaurus]
4+
authors: [anvesh, manasa]
5+
tags: [kubernetes, hello, eks]
66
---
77

8-
[Docusaurus blogging features](https://docusaurus.io/docs/blog) are powered by the [blog plugin](https://docusaurus.io/docs/api/plugins/@docusaurus/plugin-content-blog).
9-
8+
# Welcome
9+
This is your first post. Edit or delete it, then start writing!
10+
This is a test blog post. You can use it to test the blog functionality of your Docusaurus site.
1011
Here are a few tips you might find useful.
1112

1213
<!-- truncate -->
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
slug: eks-jump-box-setup
3+
title: Jump box setup on eks cluster
4+
authors: [anvesh]
5+
tags: [kubernetes, eks]
6+
---
7+
8+
In this guide, we will walk through the steps to set up a jump box on an Amazon EKS cluster. A jump box is a secure server that acts as a gateway for accessing resources in a private network.
9+
10+
## Prerequisites
11+
- An existing Amazon EKS cluster.
12+
- kubectl configured to access your EKS cluster.
13+
- AWS CLI installed and configured.
14+
15+
## Steps to Set Up the Jump Box
16+
1. **Create a Bastion Host**: Launch an EC2 instance in the same VPC as your EKS cluster.
17+
2. **Configure Security Groups**: Ensure the security group allows SSH access and communication with the EKS cluster.
18+
3. **Install Required Tools**: Install kubectl, AWS CLI, and other necessary tools on the EC2 instance.
19+
4. **Access the Jump Box**: SSH into the EC2 instance and use it to interact with the EKS cluster.
20+
21+
[Read the full article here](https://medium.com/@muppedaanvesh/jump-box-setup-on-eks-cluster-383ca92f51ef)
22+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
slug: recovering-lost-pem
3+
title: Recovering Lost PEM Keys in AWS
4+
authors: [anvesh]
5+
tags: [aws, pem, security]
6+
---
7+
8+
Losing a PEM key in AWS can be problematic because the key is required to access instances securely. once you’ve lost or misplaced a PEM key in AWS, there’s no direct way to retrieve or recover it from AWS itself. This is by design to maintain the security of your instances. The private key is meant to remain confidential, and AWS does not store or keep copies of user-generated keys for security reasons.
9+
10+
[Recovering Lost PEM Keys in AWS: A Step-by-Step Guide](https://medium.com/@muppedaanvesh/recovering-lost-pem-keys-in-aws-a-step-by-step-guide-e05a3da03ced)
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
slug: deploying-nginx-on-kubernetes
3+
title: Deploying Nginx on Kubernetes - Exploring Various Methods
4+
authors: [anvesh]
5+
tags: [kubernetes, nginx, deployment]
6+
---
7+
8+
Mastering Nginx Deployment in Kubernetes: A Comprehensive Guide to Pods, Deployments, and Beyond
9+
10+
Explore the essential steps and best practices for deploying the popular web server, Nginx, on Kubernetes. This quick guide provides a straightforward walkthrough, offering insights into setting up Nginx within a Kubernetes environment. Whether you’re a Kubernetes beginner or looking for a fast deployment solution, this guide simplifies the process, ensuring you have Nginx up and running in no time.
11+
12+
In Kubernetes, there are different resources you can use to deploy and manage applications. Here are several ways to deploy an Nginx pod using various Kubernetes resources:
13+
14+
[Read the full article here](https://medium.com/@muppedaanvesh/deploying-nginx-on-kubernetes-a-quick-guide-04d533414967)
15+
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
slug: ec2-deployment-with-ado
3+
title: AWS EC2 Deployment with Azure DevOps
4+
authors: [manasa]
5+
tags: [aws, azure, devops]
6+
---
7+
8+
A complete guide to Launching an AWS EC2 instance and deploying a simple application using Azure pipelines.
9+
10+
Hello World… Welcome to the ultimate hands-on guide for launching an AWS EC2 instance and deploying a simple application using Azure pipelines. So, let’s get started…
11+
12+
## Overview:
13+
- What is Azure DevOps Pipeline?
14+
- What is YAML?
15+
- What AWS EC2 Server is?
16+
- What is a User Data script?
17+
- Simple hands-on guide: using the PEM key
18+
- Simple hands-on guide: using User Data script
19+
- Architectural Diagram
20+
- Source Code
21+
22+
## What is Azure DevOps Pipeline?
23+
Azure DevOps Pipeline is a cloud-based service that enables developers to automate the entire software delivery process. It provides a platform for building, testing, and deploying code across various platforms and environments. It supports integration with multiple version control systems, including Git, Subversion, TFVC, etc. It offers a flexible and customizable YAML-based configuration for defining build and release pipelines.
24+
25+
[Read the full article here](https://saimanasak.medium.com/unlocking-efficiency-aws-ec2-deployment-with-azure-devops-aca96a6ca717)

blog/authors.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
anvesh:
2+
name: Anvesh Muppeda
3+
title: Kubernetes Developer
4+
url: https://github.com/anveshMuppeda
5+
image_url: https://github.com/anveshmuppeda.png
6+
page: true
7+
socials:
8+
x: Anvesh66743877
9+
github: anveshmuppeda
10+
linkedin: anveshmuppeda
11+
medium: muppedaanvesh
12+
13+
manasa:
14+
name: Sai Manasa Kota
15+
title: Backstage Developer
16+
url: https://github.com/saimanasak
17+
image_url: https://github.com/saimanasak.png
18+
# page:
19+
# # customize the url of the author page at /blog/authors/<permalink>
20+
# permalink: '/all-sebastien-lorber-articles'
21+
socials:
22+
linkedin: saimanasak
23+
github: saimanasak
24+
125
yangshun:
226
name: Yangshun Tay
327
title: Front End Engineer @ Facebook

blog/tags.yml

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
1-
facebook:
2-
label: Facebook
3-
permalink: /facebook
4-
description: Facebook tag description
1+
# This file contains the tags for the blog posts.
2+
# The tags are used to categorize the blog posts and are displayed on the blog page.
53

6-
hello:
7-
label: Hello
8-
permalink: /hello
9-
description: Hello tag description
4+
kubernetes:
5+
label: Kubernetes
6+
permalink: /kubernetes
7+
description: Kubernetes tag description
108

11-
docusaurus:
12-
label: Docusaurus
13-
permalink: /docusaurus
14-
description: Docusaurus tag description
9+
eks:
10+
label: EKS
11+
permalink: /eks
12+
description: EKS tag description
1513

16-
hola:
17-
label: Hola
18-
permalink: /hola
19-
description: Hola tag description

0 commit comments

Comments
 (0)