gke

Google Kubernetes Engine

ContainersGCP
General

General information about the service.

Description

Google Kubernetes Engine provides a managed environment for deploying, managing, and scaling containerized applications using Kubernetes.

Service ID

container.googleapis.com

Resource Pattern

projects/{project}/locations/{location}/clusters/{cluster}

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

gke-{workload}-{environment}

Length

1-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

project

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_container_cluster" "main" {
2 name = "gke-${var.environment}"
3 location = var.region
4
5 initial_node_count = 3
6
7 node_config {
8 machine_type = "e2-medium"
9 }
10}
Utilities

Utilities to support app deployment or configuration.