Skip to content
View matanbaruch's full-sized avatar
💭
🦩
💭
🦩

Block or report matanbaruch

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

Pinned Loading

  1. This script will cleanup your AWS Ta... This script will cleanup your AWS Target groups that does not associated to ALB and does not have targets
    1
    #!/bin/bash
    2
    
    
    3
    # Get a list of all target groups
    4
    target_groups=$(aws elbv2 describe-target-groups --query 'TargetGroups[*].TargetGroupArn' --output text)
    5
    
    
  2. List all pods on specific node group... List all pods on specific node group in Kubernetes
    1
    #!/bin/bash
    2
    
    
    3
    NODES=$(kubectl get nodes -o json -l eks.amazonaws.com/nodegroup=ng-1 | jq -r '.items[].metadata.name')
    4
    
    
    5
    total_count=0
  3. This is AWS CLI script to find all A... This is AWS CLI script to find all AWS EC2 ENI's with public IP and allow 0.0.0.0/0 to it
    1
    #!/bin/bash
    2
    
    
    3
    # Get all ENIs with external addresses
    4
    enis=$(aws ec2 describe-network-interfaces --query 'NetworkInterfaces[?Association.PublicIp].NetworkInterfaceId' --output text)
    5
    
    
  4. Remove all failed Github Action of a... Remove all failed Github Action of a repository bash script
    1
    #!/bin/bash
    2
    
    
    3
    REPO_OWNER="org-name or username"
    4
    REPO_NAME="repo-name"
    5
    TOKEN="gho_xxxxxxxxxxxxxxx"
  5. This is a Docker compose example for... This is a Docker compose example for Kafka 3.4 without Zookeeper, with Kafka UI
    1
    version: '3.8'
    2
    
    
    3
    services:
    4
      kafka:
    5
        image: confluentinc/confluent-local:7.4.1 # This version is Kafka 3.4
  6. aws-cloudfront-logs-opensearch aws-cloudfront-logs-opensearch Public

    This is a docker compose example on how to parse Cloudfront access logs to Opensearch