Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ This procedure demonstrates how to create the service account for your GKE integ
$ gcloud projects add-iam-policy-binding $GKE_PROJECT \
--member=serviceAccount:$SA_EMAIL \
--role=roles/container.admin \
--role=roles/storage.admin
--role=roles/storage.admin \
--role=roles/container.clusterViewer
```
{% endraw %}
1. Download the JSON keyfile for the service account:
Expand All @@ -88,7 +89,7 @@ This procedure demonstrates how to create the service account for your GKE integ
$ gcloud iam service-accounts keys create key.json --iam-account=$SA_EMAIL
```
{% endraw %}
1. Store the project ID as a secret named `GKE_PROJECT`:
1. Store the service account key as a secret named `GKE_SA_KEY`:
{% raw %}
```
$ export GKE_SA_KEY=$(cat key.json | base64)
Expand Down