Skip to content

Commit f3b8704

Browse files
committed
Allow typha-cpa to get apps/deployments
Without this it fails after deployments were switched from extensions to apps with ``` E0902 11:25:51.197420 1 reflector.go:283] github.com/kubernetes-incubator/cluster-proportional-autoscaler/pkg/autoscaler/k8sclient/k8sclient.go:96: Failed to watch *v1.Node: unknown (get nodes) E0902 11:25:53.118490 1 reflector.go:283] github.com/kubernetes-incubator/cluster-proportional-autoscaler/pkg/autoscaler/k8sclient/k8sclient.go:96: Failed to watch *v1.Node: unknown (get nodes) E0902 11:25:54.997493 1 reflector.go:283] github.com/kubernetes-incubator/cluster-proportional-autoscaler/pkg/autoscaler/k8sclient/k8sclient.go:96: Failed to watch *v1.Node: unknown (get nodes) E0902 11:25:57.097423 1 reflector.go:283] github.com/kubernetes-incubator/cluster-proportional-autoscaler/pkg/autoscaler/k8sclient/k8sclient.go:96: Failed to watch *v1.Node: unknown (get nodes) E0902 11:25:59.097417 1 reflector.go:283] github.com/kubernetes-incubator/cluster-proportional-autoscaler/pkg/autoscaler/k8sclient/k8sclient.go:96: Failed to watch *v1.Node: unknown (get nodes) I0902 11:25:59.697325 1 k8sclient.go:221] Falling back to extensions/v1beta1, error using apps/v1: deployments.apps "calico-typha" is forbidden: User "system:serviceaccount:kube-system:typha-cpha" cannot get resource "deployments/scale" in API group "apps" in the namespace "kube-system" E0902 11:25:59.699833 1 autoscaler_server.go:120] Update failure: the server could not find the requested resource ``` Ref. kubernetes/test-infra#13709
1 parent b327a72 commit f3b8704

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cluster/addons/calico-policy-controller/typha-horizontal-autoscaler-role.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ rules:
1010
- apiGroups: [""]
1111
resources: ["configmaps"]
1212
verbs: ["get"]
13-
- apiGroups: ["extensions"]
13+
- apiGroups: ["apps", "extensions"]
1414
resources: ["deployments/scale"]
1515
verbs: ["get", "update"]

0 commit comments

Comments
 (0)