«Ошибка создания кластеров контейнера gcloud» с ошибкой разрешения «container.clusters.create» - PullRequest
0 голосов
/ 20 мая 2018

Когда я создаю кластер kubernetes с помощью команды создания кластеров контейнера gcloud, возникает ошибка разрешения следующим образом:

$ gcloud container clusters create my-k8s
WARNING: Currently node auto repairs are disabled by default. In the future this will change and they will be enabled by default. Use `--[no-]enable-autorepair` flag  to suppress this warning.
WARNING: Starting in Kubernetes v1.10, new clusters will no longer get compute-rw and storage-ro scopes added to what is specified in --scopes (though the latter will remain included in the default --scopes). To use these scopes, add them explicitly to --scopes. To use the new behavior, set container/new_scopes_behavior property (gcloud config set container/new_scopes_behavior true).
ERROR: (gcloud.container.clusters.create) ResponseError: code=403, message=Required "container.clusters.create" permission for "projects/test-project".

Как я могу решить эту ошибку?

Спасибо

1 Ответ

0 голосов
/ 21 мая 2018

Я мог бы начать с помощью следующей команды:

gcloud container clusters create my-k8s --project  test-project-xxxxxx 

Примечание. Без имени проекта без номера создание завершается с той же ошибкой.

gcloud container clusters create my-k8s --project  test-project
...