-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Initial v1 docker-compose setup * Update service configuration in federation-v1 * Improve run script * Rename federation-v0 and federation-v1 services * Make federation-v* optional * Allow PTest to use IO * Introduce VersionedFed * Setup federation-v1 in integration tests * Fix coredns network * Use legacy backends in some of the tests * Fix background worker config in fed-v1 * federation-v0 and -v1 configuration for integration tests * fix linter * fix Helm chart for integration tests * Add CHANGELOG entry * Enable debug log level for federator * Disable one of the tests on legacy backends --------- Co-authored-by: Stefan Berthold <[email protected]>
- Loading branch information
1 parent
9cd1ab9
commit e221dea
Showing
61 changed files
with
2,004 additions
and
185 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
Add federation-v1 environment for testing compatibility of the federation API with version 1 |
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 |
---|---|---|
@@ -1,38 +1,38 @@ | ||
upstream cargohold { | ||
least_conn; | ||
keepalive 32; | ||
server cargohold:8080 max_fails=3 weight=1; | ||
server cargohold-v0:8080 max_fails=3 weight=1; | ||
} | ||
upstream gundeck { | ||
least_conn; | ||
keepalive 32; | ||
server gundeck:8080 max_fails=3 weight=1; | ||
server gundeck-v0:8080 max_fails=3 weight=1; | ||
} | ||
upstream cannon { | ||
least_conn; | ||
keepalive 32; | ||
server cannon:8080 max_fails=3 weight=1; | ||
server cannon-v0:8080 max_fails=3 weight=1; | ||
} | ||
upstream galley { | ||
least_conn; | ||
keepalive 32; | ||
server galley:8080 max_fails=3 weight=1; | ||
server galley-v0:8080 max_fails=3 weight=1; | ||
} | ||
upstream proxy { | ||
least_conn; | ||
keepalive 32; | ||
server proxy:8080 max_fails=3 weight=1; | ||
server proxy-v0:8080 max_fails=3 weight=1; | ||
} | ||
upstream brig { | ||
least_conn; | ||
keepalive 32; | ||
server brig:8080 max_fails=3 weight=1; | ||
server brig-v0:8080 max_fails=3 weight=1; | ||
} | ||
upstream spar { | ||
least_conn; | ||
keepalive 32; | ||
server spar:8080 max_fails=3 weight=1; | ||
server spar-v0:8080 max_fails=3 weight=1; | ||
} | ||
upstream federator_external { | ||
server federator:8081 max_fails=3 weight=1; | ||
server federator-v0:8081 max_fails=3 weight=1; | ||
} |
Oops, something went wrong.