From a7ac00bdcfc8b3a02663d3b300479cede36f8999 Mon Sep 17 00:00:00 2001 From: AlvesJorge <60895482+AlvesJorge@users.noreply.github.com> Date: Fri, 7 Jun 2024 08:50:06 +0200 Subject: [PATCH] fix missing word in secrets documentation --- content/build/building/secrets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/build/building/secrets.md b/content/build/building/secrets.md index 31a138f409..27fc85cb61 100644 --- a/content/build/building/secrets.md +++ b/content/build/building/secrets.md @@ -69,7 +69,7 @@ as a file in the build container at `/run/secrets/kube`. $ docker build --secret id=kube,env=KUBECONFIG . ``` -When you secrets from environment variables, you can omit the `env` parameter +When you use secrets from environment variables, you can omit the `env` parameter to bind the secret to a file with the same name as the variable. In the following example, the value of the `API_TOKEN` variable is mounted to `/run/secrets/API_TOKEN` in the build container.