CAS-004 • Practice Test 24
Free CAS-004 practice test — 15 questions with explanations. Set 24. No signup required.
A security auditor reviews this Kubernetes pod configuration. Which security vulnerability is most critical?
Refer to the exhibit.
```yaml
apiVersion: v1
kind: Pod
metadata:
name: web-server
spec:
containers:
- name: nginx
image: nginx:latest
securityContext:
runAsNonRoot: true
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
volumeMounts:
- name: host-volume
mountPath: /data
volumes:
- name: host-volume
hostPath:
path: /var/data
type: Directory
```