Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
umeshg17 committed May 19, 2024
1 parent bdf0205 commit 48043a5
Showing 1 changed file with 122 additions and 1 deletion.
123 changes: 122 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1,122 @@
umesh
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Umesh Gaikwad - DevOps Engineer</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
.container {
width: 80%;
margin: 0 auto;
padding: 20px;
background: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header {
text-align: center;
padding: 20px 0;
}
header h1 {
margin: 0;
}
.contact {
text-align: center;
margin: 20px 0;
}
.contact a {
color: #333;
text-decoration: none;
margin: 0 10px;
}
section {
margin: 20px 0;
}
h2 {
border-bottom: 2px solid #333;
padding-bottom: 5px;
}
.skills, .experience, .education, .certifications {
list-style-type: none;
padding: 0;
}
.experience li, .education li, .certifications li {
margin: 10px 0;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Umesh Gaikwad</h1>
</header>
<div class="contact">
<p>+91 9766185211 | Nanded, Maharashtra, IN</p>
<p><a href="mailto:gaikwadumesh123@gmail.com">gaikwadumesh123@gmail.com</a> | <a href="https://www.linkedin.com/in/umeshg17/">LinkedIn</a></p>
</div>
<section>
<h2>Objective</h2>
<p>DevOps Engineer with years of experience, seeking full-time DevOps Engineer roles where I can utilize my skills.</p>
</section>
<section>
<h2>Education</h2>
<ul class="education">
<li>
<strong>Master of Technology - Computer Science</strong>, IISc Bangalore <br>
July 2023 <br>
Coursework: Network and Distributed Systems Security, Principle of Distributed Software, and Scalable Systems for Data Science.
</li>
<li>
<strong>Bachelor of Engineering - Computer Science</strong>, MGM's COE Nanded <br>
July 2019
</li>
</ul>
</section>
<section>
<h2>Skills</h2>
<ul class="skills">
<li>Bash, Python, AWS, Docker, Kubernetes (CKA), Pulumi, Helm, GitHub Actions, CI/CD, GitOps, ArgoCD</li>
</ul>
</section>
<section>
<h2>Experience</h2>
<ul class="experience">
<li>
<strong>Big Data Engineer</strong> <br>
Exadatum Software Services Pvt Ltd, Pune, Maharashtra, IN <br>
July 2019 - April 2020 <br>
<ul>
<li>Led the effort to set up a Spark cluster on Docker, using Apache Livy to run Spark code in Jupyter Notebooks, saving costs and easing development.</li>
<li>Created Java JUnit tests to ensure smooth data flow from Kafka and Google Cloud Storage, simplifying project structure.</li>
</ul>
</li>
<li>
<strong>DevOps Engineer</strong> <br>
Amagi Media Labs Pvt Ltd, Bengaluru, Karnataka, IN <br>
Aug 2023 - present <br>
<ul>
<li>Implemented GitOps-based deployment strategies for microservices across multiple environments.</li>
<li>Configured CI/CD pipelines, integrated container security scanning.</li>
<li>Managed infrastructure updates, implemented cost optimization strategies.</li>
<li>Enhanced service discovery and routing, developed Slack-Bot features for self-serve deployment.</li>
<li>Established monitoring and alerting mechanisms, leveraged IaC principles using Pulumi.</li>
</ul>
</li>
</ul>
</section>
<section>
<h2>Certifications</h2>
<ul class="certifications">
<li><a href="https://www.credly.com/badges/75d9811c-198b-4dc5-a41d-dd3a6e6d9ee3/public_url">Google IT Automation with Python Professional Certificate</a></li>
<li><a href="https://www.credly.com/badges/5e298069-3cc7-4a4b-b30c-79a8ae8f624f/public_url">CKA: Certified Kubernetes Administrator</a></li>
</ul>
</section>
</div>
</body>
</html>

0 comments on commit 48043a5

Please sign in to comment.