Skip to content

How to increase the log level for Calico components

This document (000020063) is provided subject to the disclaimer at the end of this document.

Environment

Kubernetes cluster with the Calico Network Provider

Situation

During network troubleshooting it may be useful to increase the log level of the Calico components. This article details how to set verbose debug-level Calico component logging, in Rancher Kubernetes Engine (RKE) CLI or Rancher v2.x provisioned Kubernetes clusters.

Resolution

N.B.
 As these instructions involve editing the Calico DaemonSet directly, the change
 will not persist cluster update events As a result cluster updates should be
 avoided whilst collecting the debug level logs for troubleshooting.
Via the Rancher UI

For a Rancher v2.x managed cluster, the Calico component log level can be adjusted via the Rancher UI, per the following process:

  1. Navigate to the System project of the relevant cluster within the Rancher UI.
  2. Locate the calico DaemonSet workload within the kube-system namespace, click the vertical elipses ( ) and select Edit.
  3. Click to Edit the calico-node container.
  4. Add CALICO_STARTUP_LOGLEVEL = DEBUG , F​ELIX_LOGSEVERITYSCREEN = Debug, BGP_LOGSEVERITYSCREEN = Debug in Environment Variables section and click Save.
Via kubectl

With a Kube Config file sourced for the relevant cluster, for a user with permission to edit the System project, the Calico component log level can be adjusted via kubectl, per the following process:

  1. Run kubectl -n kube-system edit daemonset calico-node.
  2. In the env definition for the calico-node container add an environment variable with the name CALICO_STARTUP_LOGLEVEL and value DEBUG, F​ELIX_LOGSEVERITYSCREEN and value Debug and BGP_LOGSEVERITYSCREEN and value Debug, e.g.:
[...]
         containers:
      - env:
        [...]
        - name: CALICO_STARTUP_LOGLEVEL
          value: DEBUG
        - name: BGP_LOGSEVERITYSCREEN
          value: Debug
        - name: FELIX_LOGSEVERITYSCREEN
          value: Debug
[...]
  1. Save the file.

Additional Information

Disclaimer

This Support Knowledgebase provides a valuable tool for SUSE customers and parties interested in our products and solutions to acquire information, ideas and learn from one another. Materials are provided for informational, personal or non-commercial use within your organization and are presented "AS IS" WITHOUT WARRANTY OF ANY KIND.