From 5888d4a1548cdf22aa9aa932173f4b3995842275 Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Wed, 10 Apr 2019 15:35:53 +0200 Subject: [PATCH] knative/pkg now uses apps.Deployment instead of extensions See https://github.com/knative/pkg/commit/8b3dc0d76d96f5ae9711e3e503f37c4c148129fc Signed-off-by: Vincent Demeester --- config/200-clusterrole.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/200-clusterrole.yaml b/config/200-clusterrole.yaml index f7b197c36c1..66987c1634e 100644 --- a/config/200-clusterrole.yaml +++ b/config/200-clusterrole.yaml @@ -6,10 +6,10 @@ rules: - apiGroups: [""] resources: ["pods", "namespaces", "secrets", "events", "serviceaccounts", "configmaps", "persistentvolumeclaims"] verbs: ["get", "list", "create", "update", "delete", "patch", "watch"] - - apiGroups: ["extensions"] + - apiGroups: ["apps"] resources: ["deployments"] verbs: ["get", "list", "create", "update", "delete", "patch", "watch"] - - apiGroups: ["extensions"] + - apiGroups: ["apps"] resources: ["deployments/finalizers"] verbs: ["get", "list", "create", "update", "delete", "patch", "watch"] - apiGroups: ["admissionregistration.k8s.io"]