Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
J
jussi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
jussi
Compare revisions
bd63a0c1be328cdc51f27ad9311e816eaffc7a6c to 02bd25b0558f0df2f877bec3f3fbbfbeac8d1e70
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
hive/jussi
Select target project
No results found
02bd25b0558f0df2f877bec3f3fbbfbeac8d1e70
Select Git revision
Branches
g-maintenance
master
set-up-ci
Swap
Target
hive/jussi
Select target project
hive/jussi
1 result
bd63a0c1be328cdc51f27ad9311e816eaffc7a6c
Select Git revision
Branches
g-maintenance
master
set-up-ci
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Add parens to qsize() call
· d91e53ab
Eric Frias
authored
1 year ago
d91e53ab
Add docker image labels
· 02bd25b0
Eric Frias
authored
1 year ago
02bd25b0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+11
-1
11 additions, 1 deletion
.gitlab-ci.yml
Dockerfile.minimal
+21
-0
21 additions, 0 deletions
Dockerfile.minimal
jussi/handlers.py
+1
-1
1 addition, 1 deletion
jussi/handlers.py
with
33 additions
and
2 deletions
.gitlab-ci.yml
View file @
02bd25b0
...
...
@@ -11,7 +11,17 @@ docker-setup-and-processing-build:
-
docker:24.0.6-dind
script
:
-
docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
-
docker build -f Dockerfile.minimal -t ${CI_REGISTRY_IMAGE}:${CI_COMMIT_SHORT_SHA} -t ${CI_REGISTRY_IMAGE}:latest .
-
>-
docker build -f Dockerfile.minimal
-t ${CI_REGISTRY_IMAGE}:${CI_COMMIT_SHORT_SHA}
-t ${CI_REGISTRY_IMAGE}:latest
--build-arg BUILD_TIME="$(date -uIseconds)"
--build-arg GIT_COMMIT_SHA="$CI_COMMIT_SHA"
--build-arg GIT_CURRENT_BRANCH="$CI_COMMIT_BRANCH"
--build-arg GIT_LAST_LOG_MESSAGE="$CI_COMMIT_MESSAGE"
--build-arg GIT_LAST_COMMITTER="$CI_COMMIT_AUTHOR"
--build-arg GIT_LAST_COMMIT_DATE="$CI_COMMIT_TIMESTAMP"
.
-
docker push --all-tags ${CI_REGISTRY_IMAGE}
tags
:
-
public-runner-docker
This diff is collapsed.
Click to expand it.
Dockerfile.minimal
View file @
02bd25b0
...
...
@@ -34,3 +34,24 @@ COPY . .
# Run the application
ENTRYPOINT ["python", "-m", "jussi.serve"]
CMD []
ARG BUILD_TIME
ARG GIT_COMMIT_SHA
ARG GIT_CURRENT_BRANCH
ARG GIT_LAST_LOG_MESSAGE
ARG GIT_LAST_COMMITTER
ARG GIT_LAST_COMMIT_DATE
LABEL org.opencontainers.image.created="$BUILD_TIME"
LABEL org.opencontainers.image.url="https://hive.io/"
LABEL org.opencontainers.image.documentation="https://gitlab.syncad.com/hive/jussi"
LABEL org.opencontainers.image.source="https://gitlab.syncad.com/hive/jussi"
#LABEL org.opencontainers.image.version="${VERSION}"
LABEL org.opencontainers.image.revision="$GIT_COMMIT_SHA"
LABEL org.opencontainers.image.licenses="MIT"
LABEL org.opencontainers.image.ref.name="Jussi"
LABEL org.opencontainers.image.title="Jussi Reverse Proxy"
LABEL org.opencontainers.image.description="A caching reverse proxy for JSON-RPC specifically designed to cache the Hive API"
LABEL io.hive.image.branch="$GIT_CURRENT_BRANCH"
LABEL io.hive.image.commit.log_message="$GIT_LAST_LOG_MESSAGE"
LABEL io.hive.image.commit.author="$GIT_LAST_COMMITTER"
LABEL io.hive.image.commit.date="$GIT_LAST_COMMIT_DATE"
This diff is collapsed.
Click to expand it.
jussi/handlers.py
View file @
02bd25b0
...
...
@@ -105,7 +105,7 @@ async def monitor(http_request: HTTPRequest) -> HTTPResponse:
for
url
,
pool
in
pools
.
items
():
data
=
{
'
url
'
:
url
,
'
queue
'
:
pool
.
_queue
.
qsize
,
'
queue
'
:
pool
.
_queue
.
qsize
()
,
'
in_use
'
:
len
([
ch
.
_in_use
for
ch
in
pool
.
_holders
if
ch
.
_in_use
is
not
None
]),
'
ws_read_q_sizes
'
:
[
ch
.
_con
.
messages
.
qsize
()
for
ch
in
pool
.
_holders
if
ch
.
_con
]
}
...
...
This diff is collapsed.
Click to expand it.