Hello,
This kubectl command should give you the details of the SAS Viya version and cadence:
kubectl -n <sas-viya-namespace> get configmap -l "orchestration.sas.com/lifecycle==metadata" --output jsonpath="{.items[*].data}" | jq | grep "SAS_CADENCE"
If you don't have jq installed you can use this command instead:
kubectl -n <sas-viya-namespace> get configmap -o yaml | grep ' SAS_CADENCE'
Thanks,
Jack