Question 19 of 997
Minimize Microservice VulnerabilitiesmediumMultiple ChoiceObjective-mapped

Kubernetes Secrets - Best Practice

This CKS practice question tests your understanding of minimize microservice vulnerabilities. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

A microservice running as a Deployment in a Kubernetes cluster needs to authenticate to a third-party API using a static API key. Which is the most secure way to store and inject this secret into the container?

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Store the API key in a Kubernetes Secret and mount it as a volume inside the container

Option C is correct because mounting a Kubernetes Secret as a volume provides the most secure method for injecting sensitive data into a container. Unlike environment variables, which can be exposed through process listings, container logs, or `/proc` filesystem, a volume mount stores the secret in the container's filesystem with permissions restricted to the runtime user. This approach also supports automatic rotation of secret values without restarting the pod, as the filesystem is updated in place when the Secret object changes.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Store the API key in a ConfigMap and expose it as an environment variable

    Why it's wrong here

    ConfigMaps are for non-sensitive configuration data, not secrets.

  • Hardcode the API key in the container image

    Why it's wrong here

    Hardcoding secrets in images is insecure and makes rotation impossible without rebuilding.

  • Store the API key in a Kubernetes Secret and mount it as a volume inside the container

    Why this is correct

    Secrets are designed for sensitive data; volume mounts avoid exposure in environment variable listings.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Store the API key in a Kubernetes Secret and expose it as an environment variable

    Why it's wrong here

    Environment variables from Secrets can be leaked through process dumps or logs.

Common exam traps

Common exam trap: answer the scenario, not the keyword

CNCF often tests the misconception that environment variables from Secrets are equally secure as volume mounts, but the trap is that environment variables are more exposed to runtime leaks and cannot be rotated without pod restart, whereas volume mounts offer better isolation and live update capabilities.

Detailed technical explanation

How to think about this question

When a Secret is mounted as a volume, Kubernetes creates a tmpfs-backed in-memory filesystem (ramdisk) for the secret data, which is never written to disk on the node. The secret files are projected with default permissions of 0644, but can be configured with `defaultMode` to restrict access further. For dynamic secret rotation, the kubelet periodically syncs the secret from the API server and updates the files in the volume, allowing applications to read the new value without restarting, provided they watch for file changes.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A practitioner preparing for the CKS exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related CKS practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free CKS practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this CKS question test?

Minimize Microservice Vulnerabilities — This question tests Minimize Microservice Vulnerabilities — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Store the API key in a Kubernetes Secret and mount it as a volume inside the container — Option C is correct because mounting a Kubernetes Secret as a volume provides the most secure method for injecting sensitive data into a container. Unlike environment variables, which can be exposed through process listings, container logs, or `/proc` filesystem, a volume mount stores the secret in the container's filesystem with permissions restricted to the runtime user. This approach also supports automatic rotation of secret values without restarting the pod, as the filesystem is updated in place when the Secret object changes.

What should I do if I get this CKS question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

3 more ways this is tested on CKS

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. A security best practice is to avoid storing sensitive data in environment variables. Instead, secrets should be mounted as volumes. Which of the following YAML snippets correctly mounts a Kubernetes Secret named 'db-secret' as a volume at /etc/secrets?

medium
  • A.volumes: - name: secret-volume secret: name: db-secret containers: - name: app volumeMounts: - name: secret-volume mountPath: /etc/secrets
  • B.volumes: - name: secret-volume configMap: name: db-secret containers: - name: app volumeMounts: - name: secret-volume mountPath: /etc/secrets
  • C.volumes: - name: secret-volume secret: secretName: db-secret containers: - name: app volumeMounts: - name: secret-volume mountPath: /etc/secrets
  • D.containers: - name: app env: - name: DB_PASSWORD valueFrom: secretKeyRef: name: db-secret key: password

Why C: Option C is correct because it uses the `secret` volume type with the `secretName` field to reference the 'db-secret' Secret, and mounts it at /etc/secrets via a volumeMount. This adheres to the best practice of mounting secrets as volumes rather than injecting them as environment variables, which can be exposed in process listings or logs.

Variation 2. A security best practice is to avoid storing secrets in environment variables. Which is a secure alternative for injecting secrets into a pod?

medium
  • A.Use the Kubernetes Secret Store CSI driver to mount from external store
  • B.Store secrets in ConfigMap and reference them in the pod
  • C.Embed the secret directly in the pod definition YAML
  • D.Mount the Secret as a volume

Why D: Mounting a Secret as a volume (Option D) is secure because the secret data is stored in the node's tmpfs (RAM-backed filesystem), not written to disk, and is only accessible to the specific pod that mounts it. This avoids the risks of environment variables, which can be exposed through `/proc` or `kubectl exec` commands, and ensures the secret is never persisted on the host filesystem.

Variation 3. Which of the following is the best practice for providing sensitive data like passwords to a pod?

easy
  • A.Mount secrets as volumes into the pod.
  • B.Use environment variables to inject secrets directly.
  • C.Pass secrets via command-line arguments.
  • D.Hardcode the secret in the container image.

Why A: Mounting secrets as volumes into the pod is the best practice because it ensures that secrets are stored in a tmpfs (RAM-backed) filesystem, which is never written to disk and is automatically cleaned up when the pod terminates. This approach also allows the kubelet to update the secret contents in the volume without restarting the pod, and it avoids exposing the secret in process listings, logs, or environment variable dumps.

Keep practising

More CKS practice questions

Last reviewed: Jun 30, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This CKS practice question is part of Courseiva's free CNCF certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the CKS exam.