* Started work on provider * WIP Adding batch provider * Working basic call into pool client. Need to parameterize the baseurl * Fixed job creation by manipulating the content-type * WIP Kicking off containers. Dirty * [wip] More meat around scheduling simple containers. * Working on basic task wrapper to co-schedule pods * WIP on task wrapper * WIP * Working pod minimal wrapper for batch * Integrate pod template code into provider * Cleaning up * Move to docker without gpu * WIP batch integration * partially working * Working logs * Tidy code * WIP: Testing and readme * Added readme and terraform deployment for GPU Azure Batch pool. * Update to enable low priority nodes for gpu * Fix log formatting bug. Return node logs when container not yet started * Moved to golang v1.10 * Fix cri test * Fix up minor docs Issue. Add provider to readme. Add var for vk image.
15 lines
484 B
HCL
15 lines
484 B
HCL
// Provide the Client ID of a service principal for use by AKS
|
|
client_id = "00000000-0000-0000-0000-000000000000"
|
|
|
|
// Provide the Client Secret of a service principal for use by AKS
|
|
client_secret = "00000000-0000-0000-0000-000000000000"
|
|
|
|
// The resource group you would like to deploy too
|
|
resource_group_name = "vkgpu"
|
|
|
|
// The location of all resources
|
|
resource_group_location = "westeurope"
|
|
|
|
// Virtual Kubelet docker image
|
|
virtualkubelet_docker_image = "microsoft/virtual-kubelet"
|