From 0c191c3d1d30f4b802aa5f9af804612de4ca3c4f Mon Sep 17 00:00:00 2001 From: Adam Myatt Date: Fri, 5 Sep 2025 19:47:17 -0400 Subject: [PATCH] Update FuncAppKeysHelper.cs Fix typo in comment: environment variable --- src/Cli/func/Kubernetes/FuncKeys/FuncAppKeysHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cli/func/Kubernetes/FuncKeys/FuncAppKeysHelper.cs b/src/Cli/func/Kubernetes/FuncKeys/FuncAppKeysHelper.cs index 0a5c66fff..1e7721df2 100644 --- a/src/Cli/func/Kubernetes/FuncKeys/FuncAppKeysHelper.cs +++ b/src/Cli/func/Kubernetes/FuncKeys/FuncAppKeysHelper.cs @@ -50,7 +50,7 @@ public static IDictionary FuncKeysKubernetesEnvironVariables(str { AzureWebJobsSecretStorageTypeEnvVariableName, "kubernetes" } }; - // if keys needs are not to be mounted as container volume then add "AzureWebJobsKubernetesSecretName" enviornment varibale to the container + // if keys needs are not to be mounted as container volume then add "AzureWebJobsKubernetesSecretName" environment variable to the container if (!mountKeysAsContainerVolume) { funcKeysKubernetesEnvironVariables.Add(AzureWebJobsKubernetesSecretNameEnvVariableName, $"secrets/{keysSecretCollectionName}");