-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github action services do not provide api to change entrypoint. We need to switch to docker-compose to spin up docker container for auth tests.
- Loading branch information
1 parent
5e6c26b
commit bb92874
Showing
3 changed files
with
46 additions
and
11 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
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,28 @@ | ||
networks: | ||
public: | ||
name: scylla_rust_driver_passauth_public | ||
driver: bridge | ||
ipam: | ||
driver: default | ||
config: | ||
- subnet: 172.43.0.0/24 | ||
|
||
services: | ||
scylla: | ||
networks: | ||
public: | ||
ipv4_address: 172.43.0.2 | ||
image: scylladb/scylla | ||
command: | | ||
--skip-wait-for-gossip-to-settle 0 | ||
--ring-delay-ms 0 | ||
--smp 1 | ||
--memory 512M | ||
--authenticator PasswordAuthenticator | ||
ports: | ||
- "9042:9042" | ||
healthcheck: | ||
test: [ "CMD", "cqlsh", "scylla1", "-e", "select * from system.local" ] | ||
interval: 5s | ||
timeout: 5s | ||
retries: 60 |