Skip to content
View MrKCodes's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report MrKCodes

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
MrKCodes/README.md

Hi 👋, Mr. K here

I used to be a Sr. Site Reliability Engineer, I currently work as a Cloud Engineer for Deployment team in Amazon. I love to code tools and utilities to ease up or fasten the development process and especially monitoring tools. I wear many hats, some of them are:

  • DevOps Engineer
  • Cloud Engineer
  • SRE
  • Build Engineer
  • Release Engineer
  • Production Engineer
  • Software Engineer
  • Platform Engineer

kartikeyachauhan

  • 🔭 I’m currently working on AWS, Azure, K8s, Grafana, SRE activities, DevOps planning, etc.

  • 🌱 I’m currently learning EKS and ECS along with new tech like Apprunner and some AI tools

  • 📫 How to reach me on Twiiter @MrK and daily.dev

  • Email me at connect.mrkc@gmail.com

  • 📄 Know about my experiences TBD

Connect with me:

Mr. K

Pinned Loading

  1. These snippets will be helpful when ... These snippets will be helpful when you have hundreds of builds with duplicates in between them.
    1
    def jobName
    2
    Jenkins.instance.getAllItems(AbstractItem.class).each {
    3
      jobName = it.fullName
    4
      if ( jobName.contains('JOB_NAME/') && !(jobName.contains('master'))){
    5
        println("Job: " + jobName)
  2. This helps to get the dependencies f... This helps to get the dependencies for various plugins in Jenkins. Helpful while upgrading.
    1
    def plugins = jenkins.model.Jenkins.instance.getPluginManager().getPlugins()
    2
        plugins.each {
    3
                println "${it.getShortName()} (${it.getVersion()}) - ${it.getDependencies()}"
    4
        }
  3. powershell-automation powershell-automation Public

    Windows automation using Powershell

    PowerShell 1

  4. pregel-sample pregel-sample Public

    Jupyter Notebook

  5. geovane-silva/restarting-pods-report geovane-silva/restarting-pods-report Public

    A Python script to generate a Kubernetes restarting pods report

    Python 26 4