Gather Workload Management Support Bundle
Workload Management support bundles can be retrieved by logging into the VC UI and selecting Menu -> Workload Platform -> Clusters -> Export Logs, with the appropriate cluster selected.
-This works even if the cluster is stuck in a removing, configuring or updating state.
-This includes a vCenter log bundle.
-This does not include esxi logs. If the issue pertains to vSpherePods or an issue with the Guest Cluster VM's themselves, customers should gather esxi logs additionally to upload to their support ticket.
-If the log bundle from the GUI does not work, you can manually gather the logs from the command line by following this kb to ssh into each Supervisor Control Plane and run the following command to gather logs for JUST the Supervisor Control Plane VM that the command was ran on. Then you will need to manually scp the files off of the machine.
root@42184a1e6d3c54eff2384b2736cf2079 [ /usr/bin ]# wcp-agent-support.sh
Gather Guest Cluster (TKGs) Support Bundle
This bundle is gathered via a cli tool attached to this kb. This is supported only on MacOS and Linux jumpbox's.
Prerequisites:
1. A linux or macOS jumpbox to run the tool from. If you are a windows-only shop you can use the vCenter or a Supervisor Control Plane VM as your jumpbox to run the bundler from.
Note: To run kubectl commands on vCenter you can pull it from the supervisor cluster by running this command from vCenter as root:
# curl -k https://$(/usr/lib/vmware-wcp/decryptK8Pwd.py | grep IP -m 1 | awk '{print $2}')/wcp/plugin/linux-amd64/vsphere-plugin.zip -o /tmp/vsphere-plugin.zip && unzip -d /usr /tmp/vsphere-plugin.zip
2. The supervisor cluster kubeconfig file present on the system from which the vks-support-bundler command will be run. This can either be copied from another system or generated via running the kubectl vsphere login command.
3. Your current Kubernetes context must be set to the supervisor cluster.
4. For Windows nodes only, users must prepare the admin username and password before log collection. There are two ways to prepare it:
Added before the BYOI (Bring Your Own Image): This is the only feasible approach if the customer wants to collect logs when the node network does not work.
Added through ssh:
Use the script named set_windows_adminuser.sh under the attachfile. (eg: ./set_windows_adminuser.sh {cluster-name} {cluster-namespace} {windows-admin-user})
The environment must have a kubeconfig file with admin permissions that allows access to the Supervisor Cluster.
This script should be executed on a machine that has access to the same subnet as the guest cluster.
This script will SSH into the VMs to add a new admin username and password.
Flags available for vks-support-bundler:
./vks-support-bundler create --help
Create a Kubernetes cluster support bundle
Usage:
vks-support-bundler create [flags]
Flags:
-b, --batch-size int Number of nodes on which parallel collection is triggered (default 5)
-c, --cluster string Kubernetes cluster to collect support-bundle for
-d, --domain-name string VC Domain name (default "vsphere.local")
-h, --help help for create
-i, --insecure Creates an insecure connection to the VC
-k, --kubeconfig string Absolute path to the Supervisor cluster Kubeconfig. If this flag is not set, kubeconfig will be picked up from KUBECONFIG environment variable. (default "$HOME/.kube/config")
-t, --kubectl-commands string comma seperated kubectl commands
-l, --log-ns string comma seperated namespaces list whose logs should be included
-n, --namespace string Supervisor Cluster namespace where the Kubernetes cluster resides
-s, --node-stats To include the node stats in the support bundle
-o, --output string Absolute path to the directory where the support-bundle will be stored, e.g. /home/myuser/mybundle
-p, --progress-bar To progress-bar for support-bundle collection per node
-u, --user string VC User name
-v, --vc string VC IP:<port>. By default, 443 is considered as the https port
-w, --windows-admin-username string Windows vm admin username
-e, --windows-event-hours-ago string Specify the collection of windows events within a few hours (default "12")
Required flags:
-c, --cluster string Tanzu Kubernetes cluster to collect support-bundle for
-n, --namespace string Supervisor Cluster namespace where the Tanzu Kubernetes cluster resides
-o, --output string Absolute path to the directory where the support-bundle will be stored, e.g. /home/myuser/mybundle
-u, --user string VC User name
-v, --vc string VC IP:<port>. By default, 443 is considered as the https port
-w, --windows-admin-username string Windows vm admin username ## This should only be used in a cluster that has Windows nodes.
Example for default support bundle where
- .kube/config file lives under ~/.kube/config and has its context set to the supervisor cluster
- 192.0.2.15 is the vCenter ip address
- Admin user is Administrator and the VMware SSO domain is vsphere.local
- Guest cluster name is guestcluster01
- Supervisor Cluster Namespace where the Guest Cluster lives is supcluster01
- Output of the log bundle would be the user's home directory which is ~/
./vks-support-bundler create -k ~/.kube/config -v 192.0.2.15 -u [email protected] -c guestcluster01 -n supcluster01 -o ~/ -i true -p
If there is already a service account named "vks-support-bundler-user-{cluster-name}-{cluster-namespace}" or permissions associated with it (role name: "vks-support-bundler-guestops-role-{cluster-name}-{cluster-namespace}" ), the log bundle will fail. Therefore, users must ensure that they clean up this service account and the related role to enable logging collection.
There are two methods to delete them:
1. Automatic Deletion: After executing a binary file, the system will prompt for automatic deletion.
2. Manual Deletion:
To delete a role: navigate through the VC UI to Administration -> Roles, find the specific role: and then click the delete button.
To delete a user account, navigate through the VC UI to Administration -> Single Sign-On -> Users and Groups, find the specific user account, and then click the delete button.
Note: