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}");