From cc51eb39aa5b6c84a458edbd7dc8ccf826489013 Mon Sep 17 00:00:00 2001 From: Cecile Robert-Michon Date: Wed, 21 Nov 2018 10:05:03 -0800 Subject: [PATCH 1/2] remove feature flag doc --- docs/kubernetes/gpu.md | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/docs/kubernetes/gpu.md b/docs/kubernetes/gpu.md index 09621e6d35..4dbc233077 100644 --- a/docs/kubernetes/gpu.md +++ b/docs/kubernetes/gpu.md @@ -97,16 +97,4 @@ We specify `nvidia.com/gpu: 1` or `alpha.kubernetes.io/nvidia-gpu: 1` in the res ## Known incompatibilty with Moby - GPU nodes are currently incompatible with the default Moby container runtime provided in the default `aks` image. Clusters containing GPU nodes will be set to use the `aks-docker-engine` distro by default which is functionally equivalent to `aks` with the exception of the docker distribution. - For users unable to use the `aks` OS image (eg. Sovereign Clouds), a workaround is provided to install Docker Engine instead of Moby. To use it, simply enable Docker Engine in your apimodel as follows: - - ```json -{ - "apiVersion": "vlabs", - "properties": { - "featureFlags": { - "dockerEngine": true - } - } -} - ``` \ No newline at end of file + GPU nodes are currently incompatible with the default Moby container runtime provided in the default `aks` image. Clusters containing GPU nodes will be set to use Docker Engine instead of Moby. \ No newline at end of file From 70b3170c800adb5217f0b6c86d6ac5ba74f1dd8f Mon Sep 17 00:00:00 2001 From: Cecile Robert-Michon Date: Wed, 21 Nov 2018 10:07:52 -0800 Subject: [PATCH 2/2] typo --- pkg/engine/params_k8s_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/engine/params_k8s_test.go b/pkg/engine/params_k8s_test.go index e7b23ac3cf..1c65db9b43 100644 --- a/pkg/engine/params_k8s_test.go +++ b/pkg/engine/params_k8s_test.go @@ -37,7 +37,7 @@ func TestAssignKubernetesParameters(t *testing.T) { } parametersMap := paramsMap{} - containerService.Location = "eatsus" + containerService.Location = "eastus" cloudSpecConfig := containerService.GetCloudSpecConfig() containerService.SetPropertiesDefaults(false, false) assignKubernetesParameters(containerService.Properties, parametersMap, cloudSpecConfig, DefaultGeneratorCode)