Skip to content

Commit c970d5a

Browse files
committed
Add prerequisites
1 parent 8e35ec0 commit c970d5a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

content/actions/guides/deploying-to-google-kubernetes-engine.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ versions:
1616
This guide will show you how to use GitHub Actions to build and deploy a containerized application from Google Container Registry (GCR) to GKE.
1717

1818
### Prerequisites
19-
To adopt this workflow, you will first need to complete the following setup steps:
19+
To adopt this workflow, you will first need to complete the following setup steps for your [Kubernetes](https://kubernetes.io/) project. This guide assumes you already have a Dockerfile and a Kubernetes Deployment configuration file in the root of your project. See [here](https://github.com/google-github-actions/setup-gcloud/tree/master/example-workflows/gke) for a concrete example.
2020

2121
#### Create a GKE cluster
2222
For example, after [authenticating](https://cloud.google.com/sdk/gcloud/reference/auth/login) with the [`gcloud` CLI](https://cloud.google.com/sdk/gcloud/reference), part of the [Cloud SDK](https://cloud.google.com/sdk/gcloud#the_gcloud_cli_and_cloud_sdk):
@@ -68,7 +68,7 @@ export GKE_SA_KEY=$(cat key.json | base64)
6868
{% endraw %}
6969

7070
#### (Optional) Set up `kustomize`
71-
Kustomize is an optional tool used for managing YAML specs. After [setting up](https://github.com/kubernetes-sigs/kustomize#usage) a kustomization file, the workflow below can be used to dynamically set fields of the image and pipe in the result to `kubectl`.
71+
Kustomize is an optional tool used for managing YAML specs. After [setting up](https://github.com/kubernetes-sigs/kustomize#usage) a kustomization file, the workflow below can be used to dynamically set fields of the image and pipe in the result to `kubectl`.
7272

7373
### Workflow
7474

0 commit comments

Comments
 (0)