Update TODOs
Some checks failed
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Failing after 48s
Deploy Test / Run deploy test suite (pull_request) Failing after 50s
Lint Checks / Run linter (pull_request) Successful in 51s
Webapp Test / Run webapp test suite (pull_request) Failing after 32s
K8s Deployment Control Test / Run deployment control suite on kind/k8s (pull_request) Failing after 33s
Smoke Test / Run basic test suite (pull_request) Failing after 32s

This commit is contained in:
Prathamesh Musale 2024-10-21 10:20:43 +05:30
parent c24ff99e62
commit ba03d77151
3 changed files with 23 additions and 1 deletions

View File

@ -27,3 +27,25 @@ The Package Registry Stack supports a build environment that requires a package
```
* The local gitea registry can now be accessed at <http://localhost:3000> (the username and password can be taken from the deployment logs)
* Configure the hostname `gitea.local`:
Update `/etc/hosts`:
```bash
sudo nano /etc/hosts
# Add the following line
127.0.0.1 gitea.local
```
Check resolution:
```bash
ping gitea.local
PING gitea.local (127.0.0.1) 56(84) bytes of data.
64 bytes from localhost (127.0.0.1): icmp_seq=1 ttl=64 time=0.147 ms
64 bytes from localhost (127.0.0.1): icmp_seq=2 ttl=64 time=0.033 ms
...
```

View File

@ -29,7 +29,6 @@ def fatal(msg: str):
sys.exit(1)
# TODO: Add defaults for auction params
@click.command()
@click.option(
"--laconic-config", help="Provide a config file for laconicd", required=True

View File

@ -311,6 +311,7 @@ def command( # noqa: C901
main_logger.log(f"ERROR examining {r.id}: {e}")
requests_to_execute = []
# TODO: Handle requests with auction
if min_required_payment:
for r in requests_to_check_for_payment:
main_logger.log(f"{r.id}: Confirming payment...")