-
Notifications
You must be signed in to change notification settings - Fork 315
Comparing changes
Open a pull request
base repository: aws/aws-parallelcluster
base: v3.0.2
head repository: aws/aws-parallelcluster
compare: release-3.0
- 19 commits
- 17 files changed
- 7 contributors
Commits on Nov 11, 2021
-
Move c5n.18xlarge tests to BAH
Signed-off-by: Tim Lane <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for efc4e1e - Browse repository at this point
Copy the full SHA efc4e1eView commit details -
Signed-off-by: Tim Lane <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 41bf776 - Browse repository at this point
Copy the full SHA 41bf776View commit details -
Increase timeout when waiting for job to run
Signed-off-by: Tim Lane <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b1ba8a6 - Browse repository at this point
Copy the full SHA b1ba8a6View commit details
Commits on Nov 16, 2021
-
Move integration test test_pcluster_configure to mitigate ICEs of m6g…
….xlarge Signed-off-by: chenwany <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5263a8d - Browse repository at this point
Copy the full SHA 5263a8dView commit details
Commits on Nov 24, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 3a24e1a - Browse repository at this point
Copy the full SHA 3a24e1aView commit details
Commits on Nov 25, 2021
-
Revert "Move c6gn EFA tests to ap-northeast-1"
This reverts commit 3a24e1a.
Configuration menu - View commit details
-
Copy full SHA for 915db25 - Browse repository at this point
Copy the full SHA 915db25View commit details
Commits on Dec 1, 2021
-
integ-tests: do not use EFA instances for head node
The big head node instance type was used to speed up NCCL tests but we don't need EFA enabled instances for it because we're not enabling it from the Launch Template. Signed-off-by: Enrico Usai <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8d4b6d6 - Browse repository at this point
Copy the full SHA 8d4b6d6View commit details -
Disable C0103 pylint check (snake_case naming style) for eq method ov…
…erride Signed-off-by: Enrico Usai <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f886e7a - Browse repository at this point
Copy the full SHA f886e7aView commit details
Commits on Dec 2, 2021
-
Improve method to attach a volume to an instance waiting to be attached
Note: I replaced the attach_volume boto3 call with Volume.attach_to_instance method because it contains the state of the attachment in the response. Signed-off-by: Enrico Usai <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f29a088 - Browse repository at this point
Copy the full SHA f29a088View commit details
Commits on Dec 9, 2021
-
Disable build AMI test for centos7
Disable test because of #3584 Signed-off-by: Luca Carrogu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 57b3f1b - Browse repository at this point
Copy the full SHA 57b3f1bView commit details
Commits on Jan 5, 2022
-
Switch from g3.8xlarge to g4dn.xlarge for dcv test
Signed-off-by: Luca Carrogu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4a83a0b - Browse repository at this point
Copy the full SHA 4a83a0bView commit details
Commits on Jan 7, 2022
-
Switch region and instance type size for dcv test
from g4dn.xlarge to g4dn.2xlarge from ca-central-1 to us-east-1 Signed-off-by: Luca Carrogu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for eac2c84 - Browse repository at this point
Copy the full SHA eac2c84View commit details
Commits on Jan 13, 2022
-
Signed-off-by: Francesco De Martino <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a2c144d - Browse repository at this point
Copy the full SHA a2c144dView commit details -
Add test for log4j-cve-2021-44228-hotpatch service
Signed-off-by: Francesco De Martino <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 48376df - Browse repository at this point
Copy the full SHA 48376dfView commit details
Commits on Jan 14, 2022
-
Add missing OperatingSystemName to AMI tests
Signed-off-by: Francesco De Martino <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e60e9a7 - Browse repository at this point
Copy the full SHA e60e9a7View commit details -
Download/install aws-cfn-bootstrap-py3-latest.tar.gz for all OSes bes…
…ides Amazon Linux The latest release (version 0.6.0) of [pystache](https://pypi.org/project/pystache/) removed the support for Python2. This package is a dependency of aws-cfn-bootstrap-latest.tar.gz. The latest (version 1.4-34) [aws-cfn-bootstrap-latest.tar.gz](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/releasehistory-aws-cfn-bootstrap.html#releasehistory-aws-cfn-bootstrap-v1) became incompatible with Python2 after the pystache update, and it is recommended in [CloudFormation helper scripts reference](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-helper-scripts-reference.html) to use the latest installation package for Python3. Signed-off-by: Hanwen <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 84aeb60 - Browse repository at this point
Copy the full SHA 84aeb60View commit details -
[integ-tests] increase retries on url validation
Signed-off-by: Luca Carrogu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ab5ce48 - Browse repository at this point
Copy the full SHA ab5ce48View commit details
Commits on Jan 20, 2022
-
Improve get_image_log_events test to use the actual first message and…
… not a predefined one It is not always true that the first message is the cloud init debug message, sometimes the first message is "STARTED SETUP", causing the test to fail. A failing test was returning: `AssertionError: Expected <Setup: STARTED SETUP> to match pattern <Document arn:aws.*:imagebuilder:.*parallelclusterimage.*>, but did not.` and the message order was: ``` events = [ {'message': 'Setup: STARTED SETUP', 'timestamp': '2022-01-19T07:24:05.899Z'}, {'message': 'Setup: Document arn:aws.*:imagebuilder:.*parallelclusterimage.* is an EC2 Image Builder Component Version Arn', 'timestamp': '2022-01-19T07:24:05.900Z'} ] ``` With this patch we're using the actual first message to verify if it's in the list of returned events. We don't need to check the cloud init debug message is the first one or that it is present. Signed-off-by: Enrico Usai <[email protected]> Signed-off-by: Hanwen <[email protected]>Configuration menu - View commit details
-
Copy full SHA for f0b0e7e - Browse repository at this point
Copy the full SHA f0b0e7eView commit details
Commits on Feb 7, 2022
-
Signed-off-by: Francesco De Martino <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 09efe2b - Browse repository at this point
Copy the full SHA 09efe2bView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v3.0.2...release-3.0