Generate a Debug Bundle with rpk in Kubernetes
Use rpk to generate a debug bundle on a Redpanda cluster running in Kubernetes.
To generate a debug bundle with rpk, you have two options depending on your needs:
-
Use
rpk debug bundle: Run this command directly on each broker in the cluster. This method requires access to the nodes your brokers are running on. -
Use
rpk debug remote-bundle: Run this command from a remote machine to collect diagnostics data from all brokers in the cluster. This method is ideal when you want to gather data without logging into each node individually.
Prerequisites
You must have rpk installed on your host machine.
Use rpk debug bundle
To generate a debug bundle with rpk, you can run the rpk debug bundle command on each broker in the cluster.
-
Create a ClusterRole to allow Redpanda to collect information from the Kubernetes API:
-
Operator
-
Helm
redpanda-cluster.yamlapiVersion: cluster.redpanda.com/v1alpha2 kind: Redpanda metadata: name: redpanda spec: chartRef: {} clusterSpec: serviceAccount: create: true rbac: enabled: truekubectl apply -f redpanda-cluster.yaml --namespace <namespace>-
--values
-
--set
serviceaccount.yamlserviceAccount: create: true rbac: enabled: truehelm upgrade --install redpanda redpanda/redpanda --namespace redpanda --create-namespace \ --values serviceaccount.yaml --reuse-valueshelm upgrade --install redpanda redpanda/redpanda --namespace <namespace> --create-namespace \ --set serviceAccount.create=true \ --set rbac.enabled=trueIf you aren’t using the Helm chart, you can create the ClusterRole manually:
kubectl create clusterrolebinding redpanda --clusterrole=view --serviceaccount=redpanda:default -
-
Execute the
rpk debug bundlecommand on a broker:kubectl exec -it --namespace <namespace> redpanda-0 -c redpanda -- rpk debug bundle --namespace <namespace>If you have an upload URL from the Redpanda support team, provide it in the
--upload-urlflag to upload your debug bundle to Redpanda.kubectl exec -it --namespace <namespace> redpanda-0 -c redpanda -- rpk debug bundle \ --upload-url <url> \ --namespace <namespace>Example output:
Creating bundle file... Debug bundle saved to "/var/lib/redpanda/1675440652-bundle.zip"
-
On your host machine, make a directory in which to save the debug bundle:
mkdir debug-bundle -
Copy the debug bundle ZIP file to the
debug-bundledirectory on your host machine.Replace
<bundle-name>with the name of your ZIP file.kubectl cp <namespace>/redpanda-0:/var/lib/redpanda/<bundle-name> debug-bundle/<bundle-name>.zip -
Unzip the file on your host machine and use it to debug your cluster.
cd debug-bundle unzip <bundle-name>.zipFor guidance on reading the debug bundle, see Inspect a Debug Bundle.
-
Remove the debug bundle from the Redpanda broker:
kubectl exec redpanda-0 -c redpanda --namespace <namespace> -- rm /var/lib/redpanda/<bundle-name>.zip
When you’ve finished troubleshooting, remove the debug bundle from your host machine:
rm -r debug-bundle
Use rpk debug remote-bundle
The rpk debug remote-bundle command allows you to remotely generate a consolidated debug bundle from all brokers in your cluster. This command is useful when you do not want to log into each broker’s node individually using rpk debug bundle.
-
Create an
rpkprofile to connect to your cluster. Include all brokers you want to collect data from in theadmin.hostsconfiguration.rpk profile create <profile-name> --set admin.hosts=<brokers> -
Check the configured addresses in your profile:
rpk profile printExample output:
profile.ymladmin: hosts: - broker1:9644 - broker2:9644 - broker3:9644 -
Start the debug bundle process:
rpk debug remote-bundle start --namespace <namespace>Replace
<namespace>with the Kubernetes namespace in which your Redpanda cluster is running.To skip the confirmation steps, use the
--no-confirmflag.To generate a bundle for a subset of brokers, use the
-X admin.hostsflag. For example,rpk debug remote-bundle start -X admin.hosts target-broker:9644. -
Check the status:
rpk debug remote-bundle statusExample output:
BROKER STATUS JOB-ID localhost:29644 running 7f93fd6e-fc5e-46a5-8842-717542f89e59 localhost:19644 running 7f93fd6e-fc5e-46a5-8842-717542f89e59
When the status changes to
success, the process is complete.To cancel a debug bundle process while it’s running, use rpk debug remote-bundle cancel. -
When the process is complete, download the debug bundle:
rpk debug remote-bundle downloadBy default the compressed file is downloaded to your current working directory. To choose a different location or filename, use the
--outputflag. For example:rpk debug remote-bundle download --output ~/redpanda/debug-bundles/cluster1This command results in
cluster1.zipdownloaded to the~/redpanda/debug-bundles/directory.
Unzip the file and use the contents to debug your cluster. For guidance on reading the debug bundle, see Inspect a Debug Bundle.
Configure the debug_bundle_auto_removal_seconds property to automatically remove debug bundles after a period of time. See Automatically remove debug bundles.
|