Skip to content
View nataz77's full-sized avatar
๐Ÿ‘ป
Telling computers what to do
๐Ÿ‘ป
Telling computers what to do
Block or Report

Block or report nataz77

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
nataz77/README.md

Hi, I'm Simone! ๐Ÿ‘‹

Hello! I'm Simone, 26 years old, currently a Technical Specialist/Systems Engineer.
Here in GitHub I experiment around with different technologies.
My personal mission is to help people do and archive more using technology. One of my goals for the rest of 2024 is to contribute more to OSS, so here I am!

Some of my work:

Readme Card Readme Card Readme Card Readme Card Readme Card

Technologies I really like and use everyday:

AWS Azure Docker Kubernetes Linux Windows Node.js .NET

๐Ÿ’ฌ Ask me about:

Anything about Kubernetes, .NET, Azure, AWS, Docker, Node.js, cloud-native microservices architectures. If you have a other questions feel free to ask and I'll try to answer!

๐ŸŒ† Speaker projects:

I'm also a Community/Conference Speaker! I like presenting technical sessions mostly about Kubernetes, microservice-based architectures, .NET and DevOps.

More stuff about me:

  • How do I reach you? ๐Ÿ“ซThat's easy! Shoot me an email at simone@almdev.it
  • Favourite emoji? The little ghost ๐Ÿ‘ป
  • Hobbies other than work? I listen a ton of music, I play my guitar and I like anything that has an engine in it (other than boats). I have a Triumph motorcycle that I love to drive around

Pinned Loading

  1. awesome-k8s awesome-k8s Public

    List of various CNCF and non-CNCF projects and components to help you build cloud-native microservices architectures.

    8 4

  2. pgbackupd pgbackupd Public

    A k8s based backup daemon for PostgresSQL

    Shell

  3. Script to delete failed/evicted pods... Script to delete failed/evicted pods in system namespaces
    1
    #!/bin/bash
    2
    #Usage: ./kubesystemcleanup.sh 
    3
    namespaces=( "rook-ceph" "ingress-nginx" "cattle-system"  "kube-system" "longhorn-system")
    4
    for n in "${namespaces[@]}"
    5
    do
  4. Shell script to export all Kubernete... Shell script to export all Kubernetes pods logs using Kubectl go-template to a txt file
    1
    #!/bin/bash
    2
    
                  
    3
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    4
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    5
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5. Script to delete all failed/evicted ... Script to delete all failed/evicted pods from a Kubernetes cluster
    1
    #!/bin/bash
    2
    #Usage: ./kubecleanup {namespace} 
    3
    if [ -z $1 ]
    4
    then
    5
        echo 'No namespace selected, proceeding on default'
  6. cs-py cs-py Public

    not much to see here, I did this for training purposes.

    Python