-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add new integration tests for newly added one off task (#594)
* update tasks only feature * new integration tests * new integration tests with env variables defined * updated inputs * updated cluster inputs * updated region * Update test-workflow.yml * updated subnet values * updated values to link to my subnets, repo, cluster, and my service * update security group * modified workflow to add public IP and task definition with proper inputs * new task def file and yaml file changes * updated task def run task file with different container information * updated task def run task file with new cpu * new changes for integ tests with deploy task def credentials * updating task definition * updating env variables to inputs * updated region * updated env to both workflow files * removing env block * removing old commit and using commit from offical deploy repo * new echo integ test run no. * update original task definition * remove public IP input * keep only basic run task inputs * original inputs and different security group * final changes * made changes from comments * Delete .idea/.gitignore * Delete .idea/vcs.xml * Delete .idea/amazon-ecs-deploy-task-definition.iml * Delete .idea/inspectionProfiles/Project_Default.xml * Delete .idea/misc.xml * Delete .idea/modules.xml * clearer description name of each test
- Loading branch information
Showing
3 changed files
with
73 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"containerDefinitions": [ | ||
{ | ||
"memory": 32, | ||
"essential": true, | ||
"entryPoint": ["ping"], | ||
"name": "alpine_ping", | ||
"readonlyRootFilesystem": true, | ||
"image": "alpine:3.4", | ||
"command": [ | ||
"-c", | ||
"4", | ||
"example.com" | ||
], | ||
"cpu": 16 | ||
} | ||
], | ||
"memory": "512", | ||
"family": "github-actions-deploy-task-def-integ-tests", | ||
"requiresCompatibilities": [ | ||
"FARGATE" | ||
], | ||
"networkMode": "awsvpc", | ||
"cpu": "256" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters