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

Block or report govind0229

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 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
govind0229/README.md
Govind Kumar - DevOps Lead & Cloud Architect

LinkedIn Β  Medium Β  StackOverflow Β  Email


⚑ About Me

I am a DevOps Lead with 14+ years of hands-on experience in designing and managing scalable, secure, and highly available cloud infrastructures.

  • πŸ”­ I’m currently working on Advanced EKS Architectures and Platform Engineering.
  • 🌱 I’m currently exploring GitOps at scale and AI in DevOps.
  • πŸ’¬ Ask me about AWS, Kubernetes, Terraform, and CI/CD.
  • ⚑ Fun fact: I can debug YAML with my eyes closed. (Well, almost).

πŸš€ Core Competencies

  • Cloud Architecture: AWS, Azure, GCP

  • Orchestration: Kubernetes (EKS), Docker

  • IaC: Terraform, Ansible, CloudFormation

  • Observability: Prometheus, Grafana, Datadog

  • Security: DevSecOps, Compliance, Governance


Cloud Architecture

πŸ› οΈ Technology Stack

Cloud & Platforms Containers & Orchestration IaC & Automation
CI/CD & DevOps Languages Databases & Monitoring

πŸ“Š GitHub Analytics

Activity Graph

Profile Details

πŸ† Achievements & Productivity

Streak Stats

YOLO Pull Shark Arctic Code Vault

Pinned Loading

  1. How to Install Varnish + Hitch Cache... How to Install Varnish + Hitch Cache for Apache on CentOS/RHEL8
    1
    # How to Install Varnish + Hitch Cache for Apache on CentOS/RHEL8
    2
    
                  
    3
    - Varnish Cache is a free open source, modern and `high-performance` web application accelerator. It is a fast reverse HTTP proxy that caches content to speed up your web server performance, by storing web content in server memory – in a cache. It is configured to run in front of an origin server such as Apache `(HTTPD)` webserver.
    4
    
                  
    5
    
                  
  2. The check file differs from the remo... The check file differs from the remote server using ssh commands.
    1
    # Compare remote server file using ssh commands
    2
    
                  
    3
    	# ssh user@remote-host "cat /home/root/file_remote" | diff  - file_local 
    4
    	
    5
    	# ssh -P<port> -l root <remote server ip> "cat  /home/root/file_remote" | diff - /home/root/local_server_file
  3. Postgresql connection exceeded issue... Postgresql connection exceeded issue solve
    1
    # Postgresql
    2
    `Bash
    3
    psql -U postgres -c 'SHOW config_file'
    4
    psql -U postgres -c 'SHOW config_file'
    5
    psql -U postgres -c 'SHOW max_connections'
  4. Free-switch outbound calling through... Free-switch outbound calling through Asterisk setup
    1
    # Freeswitch outbound calling through Asterisk 
    2
    ````bash
    3
    [cloud]
    4
    type=peer
    5
    host=X.X.X.X
  5. Auto-dial script not running getting... Auto-dial script not running getting pycurl package import issue.
    1
    # -- autodial scriprt not running getting pycurl package import issue -- 
    2
    
                  
    3
      yum install openssl-devel
    4
      pip install --compile --install-option="--with-openssl" pycurl
    5
    
                  
  6. Resize root partition (or how to del... Resize root partition (or how to delete the default /home partition) on CentOS 8 through SSH
    1
    # Resize root partition (or how to delete the default /home partition) on CentOS 8 through SSH
    2
    This requires you to be able to ssh into the instance using the root user account and that no services be running as users out of /home on the target machine.
    3
    
                  
    4
    The examples are from a default installation with no customation-you NEED to know what you're working with for volumes/partitions to not horribly break things.
    5