8000 Tags · ferdnyc/log-detective-website · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: ferdnyc/log-detective-website

Tags

v0.0.11

Toggle v0.0.11's commit message
backend: store the text user selected as interesting snippet

v0.0.10

Toggle v0.0.10's commit message
docker: fix the new hierarchy in prod dockerfile

v0.0.9

Toggle v0.0.9's commit message
backend: move backend code to src folder to make space for tests

and also for other files

v0.0.8

Toggle v0.0.8's commit message
cronjob fixes:

- cache_dir = /tmp since it's the only writable place
- always pull the latest image to be safe
- polish resource: 250MB is not enough for the script

Signed-off-by: Tomas Tomecek <ttomecek@redhat.com>

v0.0.7

Toggle v0.0.7's commit message
compile dataset script: explicitly call it

I don't have the will to debug this:

```
$ podman run quay.io/log-detective/website:latest compile_extraction_dataset.py
/bin/env: 'python': No such file or directory

$ podman run quay.io/log-detective/website:latest python3 compile_extraction_dataset.py
python3: can't open file '/src/backend/compile_extraction_dataset.py':
[Errno 2] No such file or directory
```

hence calling the script explicitly, like in stone age

Signed-off-by: Tomas Tomecek <ttomecek@redhat.com>

v0.0.6

Toggle v0.0.6's commit message
download specs for koji scratch builds

from their SRPMs - this reintroduces the codebase
originally written by @nikromen, hence the co-authorship

If fetching of a spec file fails, return None instead of erroring out.
We want to have the annotated snippets and can live if a few don't have
spec files.

Fixes fedora-copr#98

Co-authored-by: Jiri Kyjovsky <j1.kyjovsky@gmail.com>
Signed-off-by: Tomas Tomecek <ttomecek@redhat.com>

v0.0.5

Toggle v0.0.5's commit message
koji_provider: get spec file from task

this is refactoring of the KojiProvider - we detect if the provided id
is build or task immediately in constructor

then we alw
7E0E
ays get logs and spec from task

Signed-off-by: Tomas Tomecek <ttomecek@redhat.com>

v0.0.4

Toggle v0.0.4's commit message
correctly obtain failed koji build logs

if a koji build fails, sadly this doesn't do anything:

    koji_logs = self.client.getBuildLogs(self.build_or_task_id)

koji api docs:

> This method will only return logs for builds that are complete.
> If a build is in progress, failed, or canceled, you must look at the
> build's task logs instead (see listTaskOutput).

Instead, we need to manually traverse the task hierarchy and select the
right buildArch task, which this commit implements.

Signed-off-by: Tomas Tomecek <ttomecek@redhat.com>

v0.0.3

Toggle v0.0.3's commit message
Replacing ref_name with ref, adding curlies for good measure

Signed-off-by: Jiri Podivin <jpodivin@redhat.com>

v0.0.2

Toggle v0.0.2's commit message
Adding explanation of image versioning to openshift/README.md

Signed-off-by: Jiri Podivin <jpodivin@redhat.com>
0