How to run kube-bench in my cluster?
First, you have to exec in Deckhouse Pod:
d8 k -n d8-system exec -ti svc/deckhouse-leader -c deckhouse -- bash
Then you have to select which node you want to run kube-bench.
- 
    
Run on random node:
curl -s https://raw.githubusercontent.com/aquasecurity/kube-bench/main/job.yaml | d8 k create -f - - 
    
Run on specific node, e.g. control-plane node:
curl -s https://raw.githubusercontent.com/aquasecurity/kube-bench/main/job.yaml | d8 k apply -f - --dry-run=client -o json | jq '.spec.template.spec.tolerations=[{"operator": "Exists"}] | .spec.template.spec.nodeSelector={"node-role.kubernetes.io/control-plane": ""}' | d8 k create -f - 
Then you can check report:
d8 k logs job.batch/kube-bench
Deckhouse set the log retention period to 7 days. However, according to the security requirements specified in kube-bench, logs should be retained for at least 30 days. Use separate storage for logs if you need to keep logs for more than 7 days.
How to collect debug info?
We always appreciate helping users with debugging complex issues. Please follow these steps so that we can help you:
- 
    
Collect all the necessary information by running the following command:
d8 system collect-debug-info > deckhouse-debug-$(date +"%Y_%m_%d").tar.gz - 
    
Send the archive to the Deckhouse team for further debugging.
 
Data that will be collected:
| Category | Collected data | 
|---|---|
| Deckhouse | 
        
  | 
    
| Cluster objects | 
        All objects of the following resources:
        
  | 
    
| Modules and their states | 
        
  | 
    
| Controller logs and manifests | 
        Logs of the following components:
        
 
  | 
    
| Monitoring and alerts | 
        
  | 
    
| Network | 
        
  | 
    
How to debug pod problems with ephemeral containers?
Run the following command:
d8 k -n <namespace_name> debug -it <pod_name> --image=ubuntu <container_name>
More info in official documentation.
How to debug node problems with ephemeral containers?
Run the following command:
d8 k debug node/mynode -it --image=ubuntu
More info in official documentation.