-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from petabridge/dev
v0.1.5 Release
- Loading branch information
Showing
9 changed files
with
30 additions
and
29 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,17 +1,2 @@ | ||
#### 0.1.4 July 29 2019 #### | ||
* Fixed issue with `pbm` not being found on the PATH inside Docker containers. | ||
* Fixed ASP.NET Core base image for Akka.CQRS.Pricing.Web. | ||
|
||
#### 0.1.3 June 20 2019 #### | ||
* Condensed Docker images to 1/10 previous size using `dotnet-runtime` base image. | ||
|
||
#### 0.1.2 May 31 2019 #### | ||
* Reorganized pricing and pricing-processor Dockerfiles to comport with Docker best practices. | ||
* Enabled Phobos. | ||
|
||
#### 0.1.1 May 31 2019 #### | ||
*Reorganized trader and trade-processor Dockerfiles to comport with Docker best practices. | ||
|
||
#### 0.1.0 May 26 2019 #### | ||
* Fixed `NullReferenceException` when recovering `MatchAggregatorSnapshot` records with no price and volume updates. | ||
* Fixed issue with BSON serialization for `MatchAggregatorSnapshot` records. | ||
#### 0.1.5 August 14 2019 #### | ||
* Upgraded to Akka.NET v1.3.14 and Phobos v0.7.0 |
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,10 @@ | ||
#!/usr/bin/env bash | ||
# deploys all Kubernetes services | ||
|
||
find ./k8s -name "*.yaml" | while read fname; do | ||
echo "Deploying $fname" | ||
kubectl apply -f "$fname" | ||
|
||
echo "Waiting 10s before start of next deployment." | ||
sleep 10 | ||
done |
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
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
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
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,4 @@ | ||
#!/usr/bin/env bash | ||
# destroys all K8s services | ||
|
||
kubectl -n akka-cqrs delete statefulsets,deployments,po,svc --all |