-1

これは、guideの後に、gkeでkubernetesで流星アプリを作成しています。アルファコンポーネントを有効にするには

右私はアルファコンポーネントをオンにするように言われてい冒頭:

Follow the steps in Before You Begin to create a project, enable billing, and activate the Container Engine and Compute Engine APIs. Don't forget to turn on the alpha component!

私はどのように確認していない、そのためのコマンドは何ですか?私はそれをスキップしようとしたとき

、私は次のエラーを得た:

ERROR: (gcloud.alpha.container) Invalid choice: 'kubectl'. 
Usage: gcloud alpha container [optional flags] <group | command> 
    group may be   builds | clusters | images | node-pools | operations 
    command may be   get-server-config 

For detailed information on this command and its flags, run: 
    gcloud alpha container --help 

答えて

0

そのチュートリアル内のコマンドは非常に古くなっています。 gcloud alpha container kubectl create -f mongo-pod.jsonを実行する代わりに、gcloudに付属のkubectlのインストール済みバージョンを使用し、kubectl create -f mongo-pod.jsonを実行してください。

同様に、スクリプトにgcloud alpha container replicationcontrollers ...が表示されたら、kubectl replicationcontrollers ...に置き換える必要があります。

また、そのリポジトリのメンテナーに、ドキュメントやスクリプトを更新するプルリクエストを送ることもできます。

関連する問題