-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integration testing for the EC2 Tag Based Discovery (#123)
- Loading branch information
Showing
18 changed files
with
465 additions
and
197 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
/.idea | ||
target | ||
credentials.sh | ||
.DS_Store | ||
|
||
target/ | ||
|
||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea | ||
|
||
*.class | ||
*.log | ||
|
||
*.orig | ||
**/.idea |
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
116 changes: 0 additions & 116 deletions
116
bootstrap-joining-demo/aws-api-ec2/CloudFormation/akka-cluster.yaml
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,13 +1,11 @@ | ||
enablePlugins(JavaAppPackaging) | ||
name := "bootstrap-joining-demo-aws-api-ec2" | ||
|
||
version := "1.0" | ||
packageName in Universal := "app" // should produce app.zip | ||
|
||
scalaVersion := "2.12.4" | ||
libraryDependencies += "com.amazonaws" % "aws-java-sdk-cloudformation" % "1.11.271" % IntegrationTest | ||
|
||
libraryDependencies += "com.lightbend.akka.management" % "akka-management-cluster-bootstrap_2.12" % "0.8.0" | ||
libraryDependencies += "com.amazonaws" % "aws-java-sdk-autoscaling" % "1.11.271" % IntegrationTest | ||
|
||
libraryDependencies += "com.lightbend.akka.management" % "akka-management-cluster-http_2.12" % "0.8.0" | ||
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.1" % IntegrationTest | ||
|
||
libraryDependencies += "com.lightbend.akka.discovery" % "akka-discovery-aws-api_2.12" % "0.8.0" | ||
|
This file was deleted.
Oops, something went wrong.
Binary file modified
BIN
-58.4 KB
(74%)
...rap-joining-demo/aws-api-ec2/screenshots/discovery-aws-ec2-tagged-instances.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions
7
bootstrap-joining-demo/aws-api-ec2/src/it/resources/application.conf
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,7 @@ | ||
akka { | ||
log-config-on-start = "off" | ||
actor { | ||
provider = "local" | ||
# the integration test uses akka just for the Akka Http client, so we can turn off the cluster | ||
} | ||
} |
Oops, something went wrong.