2017-04-12 7 views
1

私はk8s v1.5 installadを持っていますが、私はhttps://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/のカスタムメトリックでHPAを実装しようとしました。カスタムメトリックを持つKubernetes HPA 1.5

上記のページで、コントローラーマネージャーの "--horizontal-pod-autoscaler-use-rest-clientsフラグがtrueに設定されています"と表示されましたが、設定している間はこのフラグがサポートされていないためコントローラーマネージャーを起動できません。

どのようにk8s v1.5のガイドを見つけることができますか?

[[email protected] ~]$ kubectl version 
Client Version: version.Info{Major:"1", Minor:"5", GitVersion:"v1.5.1", GitCommit:"82450d03cb057bab0950214ef122b67c83fb11df", GitTreeState:"clean", BuildDate:"2016-12-14T00:57:05Z", GoVersion:"go1.7.4", Compiler:"gc", Platform:"linux/amd64"} 
Server Version: version.Info{Major:"1", Minor:"5", GitVersion:"v1.5.0", GitCommit:"58b7c16a52c03e4a849874602be42ee71afdcab1", GitTreeState:"clean", BuildDate:"2016-12-12T23:31:15Z", GoVersion:"go1.7.4", Compiler:"gc", Platform:"linux/amd64"} 

答えて

1

--horizo​​ntal-ポッドautoscaler利用休止・クライアントが1.6の後にサポートされています。

は、ここに私のK8Sバージョン情報です。
例としてhttps://medium.com/@marko.luksa/kubernetes-autoscaling-based-on-custom-metrics-without-using-a-host-port-b783ed6241acを参照できます。

+0

私はそれを試みました、それは動作しません。違いは、ページを使用minikub、私は標準のバージョンを使用しています。 kubeletで可能なすべてのオプションを設定します:#ps -ef | grep kubelet ルート20168 1 4 15:07? 00:10:11/usr/bin/kubelet - kubeconfig =/etc/kubernetes/kubelet.conf --require-kubeconfig = true --pod-manifest-path =/etc/kubernetes/manifests --allow-privileged = true --network-plugin = cni --cni-conf-dir =/etc/cni/net.d --cni-bin-dir =/opt/cni/bin --cluster-dns = 10.96.0.10 --cluster -domain = cluster.local --enable-custom-metrics = true EnableCustomMetrics = true ENABLE_CUSTOM_METRICS = true –

関連する問題