auto_update.py (31 lines of code) (raw):
import os
import requests
from ruamel.yaml import YAML
def get_latest_grid_driver():
# URL of the JSON file containing driver information
url = "https://raw.githubusercontent.com/Azure/azhpc-extensions/refs/heads/master/NvidiaGPU/Nvidia-GPU-Linux-Resources.json"
response = requests.get(url)
response.raise_for_status()
data = response.json()
# Extract the latest GRID driver information
grid_versions = data['Latest']['Category']
grid_info = next((item for item in grid_versions if item["Name"] == "GRID"), None)
if grid_info:
latest_version_info = grid_info['Versions'][0]
latest_version = latest_version_info['DriverVersion']
latest_url = latest_version_info['Driver'][0]['DirLink']
return latest_version, latest_url
raise Exception("Could not find latest GRID driver version")
# Add this at the end of your update_driver_config function
def update_driver_config():
yaml = YAML()
yaml.preserve_quotes = True
yaml.indent(mapping=2, sequence=4, offset=2)
if not os.path.exists("driver_config.yml"):
raise FileNotFoundError("driver_config.yml not found in the current directory.")
with open("driver_config.yml", "r") as f:
config = yaml.load(f)
# Get latest version and URL
latest_version, latest_url = get_latest_grid_driver()
# Update the grid section while preserving order
config['grid']['version'] = latest_version
config['grid']['url'] = latest_url
# Write back to file
with open("driver_config.yml", "w") as f:
yaml.dump(config, f)
if __name__ == "__main__":
update_driver_config()