Skip to content

Commit

Permalink
Updates for v2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eggoynes committed Nov 18, 2022
1 parent 5b9cadc commit 3b61364
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.3.1] - 2022-11-18
### Fixed
- Update Nvidia Driver installer for Cloud Editing hosts script updated to pull GPU drivers from us-east-1 bucket location. This fixes regions outside of us-east-1 that were unable to install drivers for hosts provisioned outside of us-east-1


## [2.3.0] - 2022-06-09

- Update the Domain Join process to use Systems Manager Document rather than powershell [Github Issue #7]
Expand Down
4 changes: 2 additions & 2 deletions source/install-gpu-drivers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function downloadGpuDrivers($Bucket, $BucketPrefix, $OsMatchStr, $DownloadDir) {
Write-Host "Download from $Bucket and match on $OsMatchStr"
$DriverFilename = '<not found>'
# https://docs.aws.amazon.com/powershell/latest/reference/TOC.html
$Objects = Get-S3Object -BucketName $Bucket -Prefix $BucketPrefix
$Objects = Get-S3Object -BucketName $Bucket -Prefix $BucketPrefix -Region us-east-1
foreach ($Object in $Objects) {
Write-Host $Object.Key
$FileName = $Object.Key
Expand All @@ -42,7 +42,7 @@ function downloadGpuDrivers($Bucket, $BucketPrefix, $OsMatchStr, $DownloadDir) {
if ($FileName -ne '' -and $Object.Size -ne 0 -and
($FileName -match $OsMatchStr -or $FileName -match 'LicenseAgreement')) {
$FullFilePath = Join-Path $DownloadDir $FileName
Copy-S3Object -BucketName $Bucket -Key $Object.Key -LocalFile $FullFilePath
Copy-S3Object -BucketName $Bucket -Key $Object.Key -LocalFile $FullFilePath -Region us-east-1
Write-Host "Copying file $FileName"
Write-Host "LocalFileName: $LocalFileName"
Write-Host "FullFilePath: $FullFilePath"
Expand Down

0 comments on commit 3b61364

Please sign in to comment.