Navigation Menu

Skip to content
View shukra-in-spirit's full-sized avatar
  • Hewlett Packard Enterprise
  • Bangalore
Block or Report

Block or report shukra-in-spirit

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

  1. haste-scheduler haste-scheduler Public

    A simple scheduler using Redis simple set and 1-d vector calculation.

    Go 1

  2. rog-golang-buddies/golang-template-repository rog-golang-buddies/golang-template-repository Public template

    Kickstarter repository for a golang service

    Makefile 17 8

  3. udemy_grpc udemy_grpc Public

    learning repository for grpc

    Go 1

  4. Useful hacks for running localstack ... Useful hacks for running localstack in your local environment
    1
    Install localstack on ubuntu: https://medium.com/testvagrant/how-to-install-localstack-natively-on-ubuntu-18-04-step-by-step-ca344b7b7d78
    2
    
                  
    3
    Extra step: in case the localstack command is not recognized:
    4
    Go to `/home/<user>/.local/bin` and check if localstack is present
    5
    add it to path by `echo $PATH` and adding the items after a :
  5. k3d important commands k3d important commands
    1
    ### create a high availability cluster 
    2
    k3d cluster create --kubeconfig-switch-context true --kubeconfig-update-default true --agent 2 --server 2 <cluster-name>
    3
    
                  
    4
    ### get the file path of the kubeconfig of a cluster and set it as default
    5
    export KUBECONFIG=$(k3d kubeconfig write <cluster-name>)