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 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)