Prisma Certified Cloud Security Engineer (PCCSE) — Question 158
An administrator wants to install the Defenders to a Kubernetes cluster. This cluster is running the console on the default service endpoint and will be exporting to
YAML.
✑ Console Address: $CONSOLE_ADDRESS
✑ Websocket Address: $WEBSOCKET_ADDRESS
✑ User: $ADMIN_USER
Which command generates the YAML file for Defender install?
Answer options
- A. <PLATFORM>/twistcli defender \ --address $CONSOLE_ADDRESS \ --user $ADMIN_USER \ --cluster-address $CONSOLE_ADDRESS
- B. <PLATFORM>/twistcli defender export kubernetes \ --address $WEBSOCKET_ADDRESS \ --user $ADMIN_USER \ --cluster-address $CONSOLE_ADDRESS
- C. <PLATFORM>/twistcli defender YAML kubernetes \ --address $CONSOLE_ADDRESS \ --user $ADMIN_USER \ --cluster-address $WEBSOCKET_ADDRESS
- D. <PLATFORM>/twistcli defender export kubernetes \ --address $CONSOLE_ADDRESS \ --user $ADMIN_USER \ --cluster-address $WEBSOCKET_ADDRESS
Correct answer: D
Explanation
The correct answer is D because it uses the 'export' command, which is required to generate a YAML file for Kubernetes deployments. Options A and C incorrectly use either the wrong command or the wrong parameters, and option B points to the Websocket address instead of the Console address, making it invalid for this context.