1. Get the kbs pod details:
  kubectl get pods -l "app=k8s-bootstrapper" -n {{ .Release.Namespace }}

2. Check configmaps and secrets successfully created
  kubectl get secrets -l "app.kubernetes.io/name={{ .Chart.Name }}" -n {{ .Release.Namespace }}

  > above command should output the following secrets config-secret, ssh-secret

  kubectl get configmap -l "app.kubernetes.io/name={{ .Chart.Name }}" -n {{ .Release.Namespace }}

  > kbs-configmap should be present in the output.