From c4957779d6563ba8f29e3f3732631a7b5a6b9d59 Mon Sep 17 00:00:00 2001 From: Harsh Arora Date: Mon, 26 Apr 2021 11:17:39 +0530 Subject: [PATCH 1/2] troubleshoot guide --- deploy/troubleshoot.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/deploy/troubleshoot.md b/deploy/troubleshoot.md index 8b7d0ce..00e5253 100644 --- a/deploy/troubleshoot.md +++ b/deploy/troubleshoot.md @@ -4,6 +4,16 @@ This document explains how to troubleshoot issues that you may encounter while u To validate Citrix ADC and the basic node configurations, refer to the image on the [deployment](README.md) page. +### Router pods not starting +If kube-cnc-router pods are not starting, then, this could be due to certain cluster restrictions wherein privileged pods cannot be deployed by non-admin users/privileges. + +As a workaround, there are 2 options: +1) Use "kube-system" namespace to deploy CNC +or +2) Assign "cluster-admin" role to CNC clusterrolebinding. + +Note: If option 1) is chosen, then one cannot create multipe instances of CNC in a single cluster as we only have one kube-system namespace available per cluster. + ### Service status DOWN To debug the issues when the service is in down state, From a8822a6e7eb81fcd7c8a7e4eb9abca594747972b Mon Sep 17 00:00:00 2001 From: Harsh Arora Date: Mon, 26 Apr 2021 11:21:46 +0530 Subject: [PATCH 2/2] indentation --- deploy/troubleshoot.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deploy/troubleshoot.md b/deploy/troubleshoot.md index 00e5253..7519564 100644 --- a/deploy/troubleshoot.md +++ b/deploy/troubleshoot.md @@ -9,7 +9,9 @@ If kube-cnc-router pods are not starting, then, this could be due to certain clu As a workaround, there are 2 options: 1) Use "kube-system" namespace to deploy CNC -or + +OR + 2) Assign "cluster-admin" role to CNC clusterrolebinding. Note: If option 1) is chosen, then one cannot create multipe instances of CNC in a single cluster as we only have one kube-system namespace available per cluster.