This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| gcloud sql instances create perpus-database | |
| # | |
| gcloud sql users set-password root --host= --instance=perpus-database --password= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Create Cloud Storage | |
| gcloud storage buckets create gs://pemilu-storage | |
| # | |
| gcloud storage cp sample.jpg gs://pemilu-storage |