Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martincastroalvarez/gcp-kubernetes
Running Kubernetes on GCP
https://github.com/martincastroalvarez/gcp-kubernetes
Last synced: 12 days ago
JSON representation
Running Kubernetes on GCP
- Host: GitHub
- URL: https://github.com/martincastroalvarez/gcp-kubernetes
- Owner: MartinCastroAlvarez
- Created: 2024-08-22T20:51:01.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-22T21:06:14.000Z (4 months ago)
- Last Synced: 2024-08-22T23:54:41.760Z (4 months ago)
- Language: Jinja
- Size: 969 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gcp-kubernetes
Running Kubernetes on GCP![wallpaper.jpg](wallpaper.jpg)
## Instructions
Install the GCP SDK:
```bash
curl https://sdk.cloud.google.com | bash
```Initialize the cloud environment:
```bash
gcloud init
```Create a project:
```bash
gcloud config set project kuber
```Enable required services:
```bash
gcloud services enable container.googleapis.com
gcloud services enable deploymentmanager.googleapis.com
```Deploy the Kubernetes cluster to GCP:
```bash
gcloud deployment-manager deployments create kubernetes-cluster --config cluster.yaml
```Verify the status of the cluster:
```
gcloud container clusters describe kuber --zone us-central1-a
```