Skip to content

Commit 45bffb7

Browse files
authored
Update Nvidia driver plugin URL to new location (#71)
* Update Nvidia driver plugin URL to new location * Update Changelog.md * Update plugin.json to new version
1 parent 0b79f07 commit 45bffb7

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## Version 2.4.1 - Bugfix release
4+
- Update Nvidia driver location
5+
36
## Version 2.4.0 - Feature and bugfix release
47
- Update Nvidia driver to the latest version
58
- Fix adding new node pools with explicit virtual network full resource id

plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "aks-clusters",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"meta": {
55
"label": "AKS clusters",
66
"description": "Interact with or create Microsoft Azure Kubernetes Service clusters",

python-lib/dku_kube/nvidia_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def has_gpu_driver(kube_config_path):
1212

1313
def add_gpu_driver_if_needed(kube_config_path):
1414
if not has_gpu_driver(kube_config_path):
15-
cmd = ['kubectl', 'apply', '-f', "https://raw.githubusercontent.com/NVIDIA/k8s-device-plugin/main/nvidia-device-plugin.yml"]
15+
cmd = ['kubectl', 'apply', '-f', "https://raw.githubusercontent.com/NVIDIA/k8s-device-plugin/main/deployments/static/nvidia-device-plugin.yml"]
1616

1717
logging.info("Install NVIDIA GPU drivers with : %s" % json.dumps(cmd))
1818
env = os.environ.copy()

0 commit comments

Comments
 (0)