Skip to main content

Basics

How can I collect diagnostics for NetFoundry support on an existing installation?

Run the support bundle script within the utilities directory to create a zip file to send to NetFoundry support

cd ./utilities
./create_support_bundle.sh

See currently deployed pods

kubectl get pods


See currently running services and the ports they run on (external is the outside port)

kubectl get services


watch container events

kubectl get events --watch -n <namespace>


tail logs for a deployment

kubectl logs -f -l app=<pod name> -n <namespace>


Restarting a container

kubectl rollout restart deployment <deployment name> -n <namespace>


Logging into the ziti controller pod directly:

kubectl get pods -n ziti -n ziti
kubectl -n ziti exec -it ziti-controller-###### -- /bin/bash