the command helm install -n hub0 src/charts/iot-edge-connector tries to install the chart in the namespace hub0, however this was not created/declared anywhere. it makes sense to use the default namespace, since that's where we gave cluster-admin permission (or tried to, since the command below seems wrong to me)
Also, kubectl create clusterrolebinding add-on-cluster-admin --clusterrole=cluster-admin --serviceaccount=kube-system:default, grants cluster-admin role to the default service account in the kube-system namespace, not the default namespace., like the doc says
the command
helm install -n hub0 src/charts/iot-edge-connector
tries to install the chart in the namespace hub0, however this was not created/declared anywhere. it makes sense to use the default namespace, since that's where we gave cluster-admin permission (or tried to, since the command below seems wrong to me)Also,
kubectl create clusterrolebinding add-on-cluster-admin --clusterrole=cluster-admin --serviceaccount=kube-system:default
, grants cluster-admin role to the default service account in the kube-system namespace, not the default namespace., like the doc saysAm I missing something here ?