Skip to content

Commit def74ee

Browse files
authored
Updated sample app deployment to deploy app with dotnet9 (#413)
*Description of changes:* Updated sample app deploy to deploy app with dotnet9 *Ensure you've run the following tests on your changes and include the link below:* To do so, create a `test.yml` file with `name: Test` and workflow description to test your changes, then remove the file for your PR. Link your test run in your PR description. This process is a short term solution while we work on creating a staging environment for testing. NOTE: TESTS RUNNING ON A SINGLE EKS CLUSTER CANNOT BE RUN IN PARALLEL. See the [needs](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idneeds) keyword to run tests in succession. - Run Java EKS on `e2e-playground` in us-east-1 and eu-central-2 - Run Python EKS on `e2e-playground` in us-east-1 and eu-central-2 - Run metric limiter on EKS cluster `e2e-playground` in us-east-1 and eu-central-2 - Run EC2 tests in all regions - Run K8s on a separate K8s cluster (check IAD test account for master node endpoints; these will change as we create and destroy clusters for OS patching) By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent fcdd4c4 commit def74ee

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/dotnet-ec2-adot-sigv4-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
required: true
1313
type: string
1414
dotnet-version:
15-
description: "Currently support version 6.0, 8.0"
15+
description: "Currently support version 8.0, 9.0"
1616
required: false
1717
type: string
1818
default: '8.0'

.github/workflows/dotnet-ec2-default-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
required: true
2020
type: string
2121
dotnet-version:
22-
description: "Currently support version 6.0, 8.0"
22+
description: "Currently support version 8.0, 9.0"
2323
required: false
2424
type: string
2525
default: '8.0'

.github/workflows/dotnet-sample-app-s3-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
'ap-southeast-2','ap-southeast-3','ap-southeast-4','ca-central-1','eu-central-1','eu-central-2','eu-north-1',
1919
'eu-south-1','eu-south-2','eu-west-1','eu-west-2','eu-west-3','il-central-1','me-central-1','me-south-1', 'sa-east-1',
2020
'us-east-1','us-east-2', 'us-west-1', 'us-west-2' ]
21-
dotnet-version: [ '6.0', '8.0' ]
21+
dotnet-version: [ '8.0', '9.0' ]
2222
runs-on: ubuntu-latest
2323
env:
2424
DEFAULT_VERSION: '8.0'

0 commit comments

Comments
 (0)