You are running SSP 5.0 or later and have encountered an alarm with the description:
"The disk usage of Security Services Platform service {{ .ResourceID }}/{{ .ObjID }} is currently {{ .Value }}%, which exceeds the threshold value."
This indicates that one or more services under Platform Services are consuming excessive disk space, potentially leading to degraded performance or system instability.
vDefend SSP Version: 5.0 and later
k -n nsxi-platform get pod <pod-name> -o jsonpath='{.metadata.ownerReferences[0].kind}'
If the output is StatefulSet
, follow the StatefulSet
restart steps.
If the output is ReplicaSet
, it belongs to a Deployment
If {{ .ResourceID }} is stateful set, run:
k -n nsxi-platform rollout restart statefulset {{ service-name }} (note: service-name is taken from pod-name without hash)
Otherwise, run:
k -n nsxi-platform rollout restart deployment {{ service-name }}
Wait for ~10 minutes and check if pods are up and running. (k -n nsxi-platform get pods
to check restarted pod are up)
Note: When pod terminates, it causes a temporary unavailability of any services it provides until a new pod is scheduled and becomes ready.
k get nodes
Expected output :
NAME STATUS ROLES AGE VERSION
node-1 Ready <role> xxm v1.xx.x
node-2 Ready <role> xxm v1.xx.x
new-node Ready <role> xxm v1.xx.x # Ensure the new node is Ready
k -n nsxi-platform get pods -o wide
', and repeat first two steps to get services across the new node.