Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
fix: appstream image version update (#1022)
Browse files Browse the repository at this point in the history
  • Loading branch information
SanketD92 authored Aug 5, 2022
1 parent f1cb58e commit 99880b3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
**/pnpm-debug.log
**/.docusaurus

.pnpm-store/*

.build
docs/build

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/deployment/post_deployment/appstream.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ This section describes the procedure of setting up an AppStream image with the f
-- <AWS Profile> <region> <Base image name> <instance size>
# Example: npm run start-image-builder -- default us-east-1
AppStream-WinServer2019-10-08-2021 stream.standard.medium
AppStream-WinServer2019-07-12-2022 stream.standard.medium
# If preferred you can choose the default base image name and instance size by running this command:
Expand Down
2 changes: 1 addition & 1 deletion scripts/app-stream/SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ If you haven't navigated to AWS AppStream in your main account via the AWS Manag
```
npm install
npm run start-image-builder -- <AWS Profile> <region> <Base image name> <instance size>
# Example: npm run start-image-builder -- default us-east-1 AppStream-WinServer2019-10-08-2021 stream.standard.medium
# Example: npm run start-image-builder -- default us-east-1 AppStream-WinServer2019-07-12-2022 stream.standard.medium
# If preferred you can choose the default base image name and instance size by running this command: npm run start-image-builder -- default us-east-1 default default
```
Note: Please set up your [AWS Profile](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html) beforehand so that you have permission to launch an AppStream image builder instance in your AWS Account.
Expand Down
2 changes: 1 addition & 1 deletion scripts/app-stream/start-image-builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const StartImageBuilder = class StartImageBuilder {
this.imageBuilderName = `SWBImageBuilder-${Date.now()}`;
this.imageName =
imageName === "default"
? "AppStream-WinServer2019-10-08-2021"
? "AppStream-WinServer2019-07-12-2022"
: imageName;
this.imageSize =
imageSize === "default" ? "stream.standard.medium" : imageSize;
Expand Down
2 changes: 1 addition & 1 deletion scripts/app-stream/start-image-builder.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ describe("start-image-builder", () => {
expect(appStreamMock.calls(0)[0].args[0].input).toEqual({
DisplayName: expect.stringMatching(nameRegEx),
EnableDefaultInternetAccess: true,
ImageName: "AppStream-WinServer2019-10-08-2021",
ImageName: "AppStream-WinServer2019-07-12-2022",
InstanceType: "stream.standard.medium",
Name: expect.stringMatching(nameRegEx),
VpcConfig: {
Expand Down

0 comments on commit 99880b3

Please sign in to comment.