update docs to say GKE or Kubernetes instead of container (#804)

* update docs to say GKE or Kubernetes instead of container

* use GKE in more places
This commit is contained in:
Dana Hoffman 2017-11-29 15:40:27 -08:00 committed by GitHub
parent 8f701c6ebb
commit 10819a1821
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View File

@ -3,12 +3,12 @@ layout: "google"
page_title: "Google: google_container_cluster"
sidebar_current: "docs-google-container-cluster"
description: |-
Creates a GKE cluster.
Creates a Google Kubernetes Engine (GKE) cluster.
---
# google\_container\_cluster
Creates a GKE cluster. For more information see
Creates a Google Kubernetes Engine (GKE) cluster. For more information see
[the official documentation](https://cloud.google.com/container-engine/docs/clusters)
and
[API](https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters).
@ -50,7 +50,7 @@ resource "google_container_cluster" "primary" {
}
}
# The following outputs allow authentication and connectivity to the Google Container Cluster.
# The following outputs allow authentication and connectivity to the GKE Cluster.
output "client_certificate" {
value = "${google_container_cluster.primary.master_auth.0.client_certificate}"
}
@ -79,10 +79,10 @@ output "cluster_ca_certificate" {
configured, the number of nodes specified in `initial_node_count` is created in
all specified zones.
* `addons_config` - (Optional) The configuration for addons supported by Google
Container Engine. Structure is documented below.
* `addons_config` - (Optional) The configuration for addons supported by GKE.
Structure is documented below.
* `cluster_ipv4_cidr` - (Optional) The IP address range of the container pods in
* `cluster_ipv4_cidr` - (Optional) The IP address range of the kubernetes pods in
this cluster. Default is an automatically assigned CIDR.
* `description` - (Optional) Description of the cluster.
@ -313,7 +313,7 @@ exported:
## Import
Container clusters can be imported using the `zone`, and `name`, e.g.
GKE clusters can be imported using the `zone`, and `name`, e.g.
```
$ terraform import google_container_cluster.mycluster us-east1-a/my-cluster

View File

@ -320,7 +320,7 @@
</li>
<li<%= sidebar_current("docs-google-container") %>>
<a href="#">Google Container Engine Resources</a>
<a href="#">Google Kubernetes (Container) Engine Resources</a>
<ul class="nav nav-visible">
<li<%= sidebar_current("docs-google-container-cluster") %>>
<a href="/docs/providers/google/r/container_cluster.html">google_container_cluster</a>