GKEノードプールのステータスがPROVISIONINGのままになっている


8

TerraformでGKEノードプールを作成しようとしています

resource "google_container_node_pool" "node_pool" {
  provider = google-beta
  name       = var.node_pool_name
  location   = var.region
  cluster    = var.cluster_name
  node_count = var.k8s_workers_count

  node_config {
    machine_type = var.k8s_workers_shape

    image_type      = "COS"
    service_account = google_service_account.sa.email
    labels = {
      name = var.node_pool_name
    }
    metadata = {
      disable-legacy-endpoints = "true"
    }
    workload_metadata_config {
      node_metadata = "GKE_METADATA_SERVER"
    }
    oauth_scopes = [
      "https://www.googleapis.com/auth/cloud-platform",
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  }

  management {
    auto_repair  = true
    auto_upgrade = true
  }
}

3m TFコンソールがエラーメッセージを返した後

Error: Error reading NodePool "pool1" from cluster "cluster-1": Nodepool "pool1" has status "PROVISIONING" with message ""

Gcloud cliはそのステータスを実際にプロビジョニングします

config:
  diskSizeGb: 100
  diskType: pd-standard
  imageType: COS
  labels:
    name: pool1
  machineType: n1-standard-4
  metadata:
    disable-legacy-endpoints: 'true'
  oauthScopes:
  - https://www.googleapis.com/auth/cloud-platform
  - https://www.googleapis.com/auth/userinfo.email
  serviceAccount: 
  shieldedInstanceConfig:
    enableIntegrityMonitoring: true
initialNodeCount: 2
instanceGroupUrls:
- https://www.googleapis.com/compute/v1/projects/
management:
  autoRepair: true
  autoUpgrade: true
maxPodsConstraint:
  maxPodsPerNode: '110'
name: pool1
podIpv4CidrSize: 24
selfLink: XXX
status: PROVISIONING
version: 1.13.11-gke.14

ただし、ステータスが緑色であるとconsole.cloud.google.comで示され、クラスターを使用するとデプロイメントなどを作成できます。

更新:1:48 PM 12/7/2019-TFスクリプトを実行できました。Googleが修正したのか、運が良かったのかわかりません。


1
私は昨日から同じ問題を抱えています...
Medvednic

3
ここヨーロッパ2西も同様
プロメテ

1
あなたたちはなんとか問題を解決できましたか?私も同じものを手に入れています
変人主義

2
今日も同じ問題を抱えています。今までと同じ問題に直面しています。asia-southeast1リージョンの鉱山
Agung Pratama

2
詳細については、サポートチームにお問い合わせください。詳細がわかり次第お知らせします。
Yoanis Gil

回答:


4

この問題に関する情報はhttps://status.cloud.google.com/にあります

asia-east1-a、asia-east2-c、asia-northeast1-a、asia-northeast2-c、asia-south1-a、asia-southeast1-a、australia-southeast1-a、europe-に新しく作成されたGKEノードプールnorth1-c、europe-west1-c、europe-west2-a、europe-west3-a、europe-west4-a、europe-west6-c、northamerica-northeast1-c、southamerica-east1-a、us-central1- b、us-east1-a、us-east1-d、us-east2-a、us-east4-b、us-west1-a、およびus-west2-cは正常に作成されますが、誤ってプロビジョニングとして表示されます。進行中のロールバックは、新しいノードプールのこれを解決します。


1
最後に、問題が解決されました!🎉
prometherion
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.