From 9d91990a88c0fd6f60f7d95bd4688881e7c3ccd8 Mon Sep 17 00:00:00 2001 From: Alex Ellis Date: Tue, 1 Jan 2019 18:01:09 +0000 Subject: [PATCH] Update service role to use -head deployment The regular deployment is erroring with image not found. These instructions were tested on a local RPi cluster. Signed-off-by: Alex Ellis --- GUIDE.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GUIDE.md b/GUIDE.md index 4b4859e..165e143 100644 --- a/GUIDE.md +++ b/GUIDE.md @@ -313,16 +313,16 @@ The dashboard can be useful for visualising the state and health of your system, echo -n 'apiVersion: rbac.authorization.k8s.io/v1beta1 kind: ClusterRoleBinding metadata: - name: kubernetes-dashboard + name: kubernetes-dashboard-head labels: - k8s-app: kubernetes-dashboard + k8s-app: kubernetes-dashboard-head roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: cluster-admin subjects: - kind: ServiceAccount - name: kubernetes-dashboard + name: kubernetes-dashboard-head namespace: kube-system' | kubectl apply -f - ```