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...
    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...
    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...
    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...
    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...
    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 Public

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