Container Deployment
v2.9.1
Search this version
Troubleshooting
Copy Markdown
Open in ChatGPT
Open in Claude
Inspecting a deployment
Logs
# Follow a service
kubectl logs -f deploy/control-center
kubectl logs -f deploy/identity-service
# A specific StatefulSet replica
kubectl logs -f file-storage-0
kubectl logs -f ometascan-0
# The previous container, after a crash loop
kubectl logs ometascan-0 --previous
Configuration actually in effect
kubectl get configmap mdcluster-config -o yaml
kubectl get secret mdcluster-secrets -o jsonpath='{.data}' | jq 'keys' # key names only
helm get values mdcluster
helm get values shows what the release really holds, which is not always what your values file says — particularly after an upgrade with --reuse-values.
Collecting information for support
# Everything in the namespace
kubectl get all -o wide > cluster-state.txt
kubectl describe pods > pod-details.txt
# Effective configuration (Secret values are not included)
kubectl get configmap mdcluster-config -o yaml > config.yaml
helm get values mdcluster > values-mdcluster.yaml
# Logs
for p in $(kubectl get pods -o name); do
kubectl logs "$p" --all-containers --tail=5000 > "logs-${p#pod/}.txt"
done
Include your MetaDefender Cluster version (MDCLS_VERSION), your Kubernetes version (kubectl version), and whether you use the bundled or external infrastructure.
Can use Export to collect the MetaDefender Cluster logs in full.
Review the files before sharing them — logs and ConfigMap contents may include hostnames and account names from your environment.
Last updated on
Was this page helpful?
null
Discard Changes
Do you want to discard your current changes and overwrite with the template?
Archive Synced Block
Message
Create new Template
What is this template's title?
Delete Template
Message
Container Deployment
Container Deployment
Page
Code Steps
Category
Label
Link
Separator
Title
Message
Page icon
No icon. This page keeps the plain index row.
orSVG or PNG, square, at least 32×32.
Create new category
What is the title of your new category?
Edit page index title
What is the title of the page index?
Edit category
What is the new title of your category?
Edit link
What is the new title and URL of your link?