Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GA updates #70

Merged
merged 10 commits into from
Feb 21, 2023
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This repository is offered for tracking features and issues with the Azure Kuber
Support through issues on this repository is provided on a **best-effort basis** for issues that are reproducible following our **Bug Guidance** below. To receive urgent support you must file a support request through official Azure support channels as urgent support is explicitly out of scope of this repository's objectives.

> [!IMPORTANT]
> 02/03/2023 -  Public preview has been refreshed! Try out our new bits.(Release Candidate for GA) (version 1.0.266.0).
> 02/21/2023 -  AKS Edge Essentials is now GA (version 1.0.406.0).

## Important Links

Expand Down Expand Up @@ -37,4 +37,4 @@ the rights to use your contribution. For details, visit [Microsoft CLA Opensourc

This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
8 changes: 1 addition & 7 deletions tools/AksEdgeShell.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Validates and loads the config file and imports the bootstrap scripts
#>
#Requires -RunAsAdministrator
New-Variable -Name gAksEdgeShellVersion -Value "1.0.230203.1200" -Option Constant -ErrorAction SilentlyContinue
New-Variable -Name gAksEdgeShellVersion -Value "1.0.230221.1000" -Option Constant -ErrorAction SilentlyContinue
if (! [Environment]::Is64BitProcess) {
Write-Host "Error: Run this in 64bit Powershell session" -ForegroundColor Red
exit -1
Expand All @@ -12,12 +12,6 @@ if (! [Environment]::Is64BitProcess) {
$aksjson = "$PSScriptRoot\aide-userconfig.json"
$aksjson = (Resolve-Path -Path $aksjson).Path
Push-Location $PSScriptRoot
$aksedgemodule = (Get-Module -Name AksIot -ListAvailable)
if ($aksedgemodule -and $aksedgemodule.Version.Minor -lt 7) {
Write-Host "Older version of AKS edge found. Please uninstall.Press any key to exit." -ForegroundColor Red
pause
return
}
parameshbabu marked this conversation as resolved.
Show resolved Hide resolved

$modulePath = Split-Path -Path $((Get-ChildItem $PSScriptRoot -recurse -Filter AksEdgeDeploy).FullName) -Parent
if (!(($env:PSModulePath).Contains($modulePath))) {
Expand Down
2 changes: 1 addition & 1 deletion tools/aide-userconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"SchemaVersion": "1.1",
"Version": "1.0",
"AksEdgeProduct": "AKS Edge Essentials - K3s (Public Preview)",
"AksEdgeProduct": "AKS Edge Essentials - K3s",
"AksEdgeProductUrl": "",
"InstallOptions": {
"InstallPath": "",
Expand Down
Loading