Skip to content
This repository was archived by the owner on Oct 24, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 1 addition & 13 deletions docs/kubernetes/gpu.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
}
```
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.
2 changes: 1 addition & 1 deletion pkg/engine/params_k8s_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func TestAssignKubernetesParameters(t *testing.T) {
}

parametersMap := paramsMap{}
containerService.Location = "eatsus"
containerService.Location = "eastus"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unrelated typo

cloudSpecConfig := containerService.GetCloudSpecConfig()
containerService.SetPropertiesDefaults(false, false)
assignKubernetesParameters(containerService.Properties, parametersMap, cloudSpecConfig, DefaultGeneratorCode)
Expand Down