Skip to content

Instantly share code, notes, and snippets.

View Kelniiittt's full-sized avatar

Kelp Kelniiittt

View GitHub Profile
@Kelniiittt
Kelniiittt / GoogleKubernetes.sh
Created January 5, 2025 07:50
Google Kubernetes Engine
#!/bin/bash
gcloud config set us-central1
gcloud config set us-central1-c
gcloud container clusters create --machine-type=e2-medium --zone=zone pemilu-cluster
gcloud container clusters get-credentials pemilu-cluster
@Kelniiittt
Kelniiittt / CloudSQL.sh
Created December 24, 2024 17:09
Google Cloud MySQL
#!/bin/bash
#
gcloud sql instances create perpus-database
#
gcloud sql users set-password root --host= --instance=perpus-database --password=
@Kelniiittt
Kelniiittt / CloudStorage.sh
Created December 24, 2024 17:02
Google Cloud Storage
#!/bin/bash
# Create Cloud Storage
gcloud storage buckets create gs://pemilu-storage
#
gcloud storage cp sample.jpg gs://pemilu-storage