Skip to content

Commit

Permalink
Fix docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
antarcticrainforest committed Mar 18, 2024
1 parent 4326309 commit f21392b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/docker_job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,14 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Set docker version label
run: sed -i 's/<VERSION>/${{ steps.repository.outputs.tag }}/g' assets/share/freva/deployment/vault/Dockerfile

-
name: Build and push vault image
uses: docker/build-push-action@v4
with:
context: assets/share/freva/deployment/vault/
platforms: linux/amd64
push: true
build-args: VERSION=${{steps.repository.outputs.tag}}
tags: |
ghcr.io/${{ steps.repository.outputs.repo }}:${{ steps.repository.outputs.tag }}
ghcr.io/${{ steps.repository.outputs.repo }}:latest
4 changes: 2 additions & 2 deletions assets/share/freva/deployment/vault/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM docker.io/hashicorp/vault:latest

ARG VERSION
LABEL org.opencontainers.image.authors="DRKZ-CLINT"
LABEL org.opencontainers.image.source="https://github.com/FREVA-CLINT/freva-deployment.git"
LABEL org.opencontainers.image.version="<VERSION>"
LABEL org.opencontainers.image.version="$VERSION"

ENV VAULT_ADDR='http://127.0.0.1:8200'
COPY runserver.py /bin/runserver.py
Expand Down
2 changes: 1 addition & 1 deletion docs/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ What's new
:maxdepth: 0
:titlesonly:

v2403.0.1
v2403.0.2
~~~~~~~~~
* A new procedure to check the correct versions of all micro services has
been added
Expand Down
2 changes: 1 addition & 1 deletion src/freva_deployment/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from urllib.request import urlretrieve

__version__ = "2403.0.1"
__version__ = "2403.0.2"
FREVA_PYTHON_VERSION = "3.11"
AVAILABLE_PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"]
AVAILABLE_CONDA_ARCHS = [
Expand Down

0 comments on commit f21392b

Please sign in to comment.