Skip to content
View Kelniit's full-sized avatar
  • Joined Jan 15, 2025

Block or report Kelniit

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. Google Cloud Storage Google Cloud Storage
    1
    #!/bin/bash
    2
    
                  
    3
    # Create Cloud Storage
    4
    gcloud storage buckets create gs://pemilu-storage
    5
    
                  
  2. Google Kubernetes Engine Google Kubernetes Engine
    1
    #!/bin/bash
    2
    
                  
    3
    #
    4
    gcloud container clusters create --machine-type=e2-medium --zone=ZONE lab-cluster
    5
    
                  
  3. Google Pub Sub Google Pub Sub
    1
    #!/bin/bash
    2
    
                  
    3
    # Create Topic
    4
    gcloud pubsub topics create PemiluTopic
    5
    
                  
  4. Kubernetes Controller Kubernetes Controller
    1
    #!/bin/bash
    2
    
                  
    3
    #
    4
    kubectl create deployment hello-server --image=gcr.io/google-samples/hello-app:1.0
    5