A background worker needs an API token stored as an Opaque Secret named worker-token in namespace billing. Which command creates it from a literal value?
Select an answer to reveal the explanation.
Short Explanation
Opaque Secrets are labeled envelopes for app credentials—generic is the everyday type. kubectl create secret generic with --from-literal drops the token into billing without pretending it's a registry login. ConfigMaps aren't for secret tokens.
Full Explanation
Application API tokens are typically stored in Opaque Secrets. kubectl create secret generic NAME --from-literal=... creates that type in the target namespace. ConfigMaps are not appropriate for credentials, docker-registry Secrets serve image-pull auth, and ServiceAccount creation is a different resource.