tests: use dex from ghcr
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
ddf09a4cf5
commit
80cc0fcc61
|
@ -4,9 +4,9 @@
|
||||||
|
|
||||||
| Version | Supported |
|
| Version | Supported |
|
||||||
| ---------- | ------------------ |
|
| ---------- | ------------------ |
|
||||||
| 2021.1.x | :white_check_mark: |
|
|
||||||
| 2021.2.x | :white_check_mark: |
|
| 2021.2.x | :white_check_mark: |
|
||||||
| 2021.3.x | :white_check_mark: |
|
| 2021.3.x | :white_check_mark: |
|
||||||
|
| 2021.4.x | :white_check_mark: |
|
||||||
|
|
||||||
## Reporting a Vulnerability
|
## Reporting a Vulnerability
|
||||||
|
|
||||||
|
|
|
@ -75,11 +75,11 @@ class TestSourceOAuth2(SeleniumTestCase):
|
||||||
|
|
||||||
def get_container_specs(self) -> Optional[dict[str, Any]]:
|
def get_container_specs(self) -> Optional[dict[str, Any]]:
|
||||||
return {
|
return {
|
||||||
"image": "quay.io/dexidp/dex:v2.24.0",
|
"image": "ghcr.io/dexidp/dex:v2.28.1",
|
||||||
"detach": True,
|
"detach": True,
|
||||||
"network_mode": "host",
|
"network_mode": "host",
|
||||||
"auto_remove": True,
|
"auto_remove": True,
|
||||||
"command": "serve /config.yml",
|
"command": "dex serve /config.yml",
|
||||||
"healthcheck": Healthcheck(
|
"healthcheck": Healthcheck(
|
||||||
test=["CMD", "wget", "--spider", "http://localhost:5556/dex/healthz"],
|
test=["CMD", "wget", "--spider", "http://localhost:5556/dex/healthz"],
|
||||||
interval=5 * 100 * 1000000,
|
interval=5 * 100 * 1000000,
|
||||||
|
|
Reference in New Issue